Configuración inicial del proyecto: estructura de directorios y dependencias mínimas instaladas

This commit is contained in:
manu
2025-12-05 09:36:39 -05:00
commit 002c79abcb
60 changed files with 11057 additions and 0 deletions

8
app/(auth)/layout.tsx Normal file
View File

@@ -0,0 +1,8 @@
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}

View File

@@ -0,0 +1,9 @@
export default function LoginPage() {
return (
<div>
<h1>Login Page</h1>
{/* Login form will be implemented here */}
</div>
);
}

View File

@@ -0,0 +1,9 @@
export default function RegisterPage() {
return (
<div>
<h1>Register Page</h1>
{/* Register form will be implemented here */}
</div>
);
}