Configuración inicial del proyecto: estructura de directorios y dependencias mínimas instaladas
This commit is contained in:
8
app/(public)/layout.tsx
Normal file
8
app/(public)/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function PublicLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
|
||||
9
app/(public)/search/page.tsx
Normal file
9
app/(public)/search/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default function SearchPage() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Search Page</h1>
|
||||
{/* Search functionality will be implemented here */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
14
app/(public)/vehicles/[id]/page.tsx
Normal file
14
app/(public)/vehicles/[id]/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user