Login and dashboard added

This commit is contained in:
2026-07-13 16:09:15 +01:00
commit ca40bd4095
36 changed files with 7821 additions and 0 deletions

15
app/login/page.tsx Normal file
View File

@@ -0,0 +1,15 @@
"use client";
import AuthLayout from "@/components/auth/authlayout";
import AuthCard from "@/components/auth/authCard";
export default function LoginPage() {
return (
<AuthLayout>
<AuthCard />
</AuthLayout>
);
}