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/(public)/layout.tsx Normal file
View File

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

View File

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

View File

@@ -0,0 +1,14 @@
export default function VehicleDetailPage({
params,
}: {
params: { id: string };
}) {
return (
<div>
<h1>Vehicle Detail Page</h1>
<p>Vehicle ID: {params.id}</p>
{/* Vehicle details will be implemented here */}
</div>
);
}