From 6071488f7bceec71d8264c2b1d35e9b7eac3b071 Mon Sep 17 00:00:00 2001 From: headlesdev Date: Sat, 17 May 2025 15:22:03 +0200 Subject: [PATCH] Login Page Template --- app/page.tsx | 71 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 66 insertions(+), 5 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 0a39380..421796e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,9 +1,70 @@ -import Image from "next/image"; +import Image from "next/image" +import Link from "next/link" -export default function Home() { +export default function LoginPage() { return ( -
-

CoreControl

+
+
+
+
+

Welcome back

+

Please login with your account

+
+ +
+
+ + +
+ +
+ + + +
+ +
+ +
+ + +
+
+
+ +
+
+ Login Illustration +
+
+ +
+ Login Illustration +
- ); + ) }