feat: implement initial fullstack portfolio application including dashboard, CMS, and analytics features.
This commit is contained in:
13
src/app/dashboard/auth/page.tsx
Normal file
13
src/app/dashboard/auth/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { LoginForm } from "@/components/dashboard/auth/LoginForm";
|
||||
|
||||
export default function AuthPage() {
|
||||
return (
|
||||
<section className="min-h-[100vh] flex items-center justify-center p-4 relative overflow-hidden bg-background">
|
||||
{/* Background radial gradients for premium depth */}
|
||||
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[800px] h-[800px] bg-accent/5 rounded-full blur-[120px] pointer-events-none" />
|
||||
<div className="absolute bottom-0 right-0 w-[500px] h-[500px] bg-primary/5 rounded-full blur-[100px] pointer-events-none" />
|
||||
|
||||
<LoginForm />
|
||||
</section>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user