fix: add force-dynamic to auth-protected pages, sunum gallery+detail modal, form step 3 layout, academy tour updates

This commit is contained in:
egecankomur
2026-05-12 05:02:44 +03:00
parent 3554b39800
commit 8dd970d2ad
9 changed files with 496 additions and 135 deletions
@@ -159,9 +159,9 @@ export function PropertyFormSheet({ open, onOpenChange, property, onSuccess }: P
{
label: "Özellikler",
content: (
<div className="grid grid-cols-5 gap-3">
<div className="grid grid-cols-2 gap-3">
<div className="grid gap-1.5">
<Label htmlFor="roomCount">Oda</Label>
<Label htmlFor="roomCount">Oda sayısı</Label>
<select name="roomCount" defaultValue={property?.roomCount ?? ""}
className="border-input bg-background h-9 rounded-md border px-3 text-sm">
<option value=""></option>
@@ -186,11 +186,11 @@ export function PropertyFormSheet({ open, onOpenChange, property, onSuccess }: P
<Input id="floor" name="floor" type="number" defaultValue={property?.floor ?? ""} />
</div>
<div className="grid gap-1.5">
<Label htmlFor="totalFloors">Top. kat</Label>
<Label htmlFor="totalFloors">Toplam kat</Label>
<Input id="totalFloors" name="totalFloors" type="number" defaultValue={property?.totalFloors ?? ""} />
</div>
<div className="grid gap-1.5">
<Label htmlFor="buildingAge">Y</Label>
<div className="grid gap-1.5 col-span-2">
<Label htmlFor="buildingAge">Bina yı</Label>
<Input id="buildingAge" name="buildingAge" type="number" min="0" defaultValue={property?.buildingAge ?? ""} />
</div>
</div>