From a84866715291b0d62ad55032978af492853b0a73 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Thu, 13 Mar 2025 10:33:19 +0100 Subject: [PATCH] Add: LoginPage --- frontend/src/pages/LoginPage.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 frontend/src/pages/LoginPage.tsx diff --git a/frontend/src/pages/LoginPage.tsx b/frontend/src/pages/LoginPage.tsx new file mode 100644 index 0000000..6c4cba3 --- /dev/null +++ b/frontend/src/pages/LoginPage.tsx @@ -0,0 +1,27 @@ +import { LoginForm } from "@/components/partials/LoginForm" + +import { Helmet } from 'react-helmet-async' + +export default function LoginPage() { + return ( + <> + + Login | {__SITE_NAME__} + +
+ {/* Background Image */} + Background + + {/* Content */} +
+ +
+
+ + ) +} +