feat: add vehicle edit page, image gallery with upload, print and CSV export

This commit is contained in:
2026-07-19 19:47:39 +02:00
parent 58fcf4a722
commit 563127c75a
9 changed files with 499 additions and 5 deletions
@@ -0,0 +1,15 @@
import { VehicleEditForm } from '@/components/vehicles/VehicleEditForm';
export default async function FahrzeugBearbeitenPage({
params,
}: {
params: Promise<{ locale: string; id: string }>;
}) {
const { id } = await params;
return (
<div className="max-w-2xl mx-auto p-6">
<h1 className="text-2xl font-bold text-text mb-6">Fahrzeug bearbeiten</h1>
<VehicleEditForm vehicleId={id} />
</div>
);
}