Configuración inicial del proyecto: estructura de directorios y dependencias mínimas instaladas
This commit is contained in:
9
app/(dashboard)/dashboard/page.tsx
Normal file
9
app/(dashboard)/dashboard/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default function DashboardPage() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Dashboard</h1>
|
||||
{/* Dashboard content will be implemented here */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
14
app/(dashboard)/dashboard/vehicles/[id]/page.tsx
Normal file
14
app/(dashboard)/dashboard/vehicles/[id]/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
export default function EditVehiclePage({
|
||||
params,
|
||||
}: {
|
||||
params: { id: string };
|
||||
}) {
|
||||
return (
|
||||
<div>
|
||||
<h1>Edit Vehicle</h1>
|
||||
<p>Vehicle ID: {params.id}</p>
|
||||
{/* Vehicle edit form will be implemented here */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
9
app/(dashboard)/dashboard/vehicles/create/page.tsx
Normal file
9
app/(dashboard)/dashboard/vehicles/create/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default function CreateVehiclePage() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Create Vehicle</h1>
|
||||
{/* Vehicle creation form will be implemented here */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user