diff --git a/src/app/page.tsx b/src/app/page.tsx index 07a01d9..6172c35 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,184 @@ +"use client"; + +import { useState } from "react"; +import { Seat } from "@/components/ui/seat"; + export default function Home() { - return (
); + // State for controlling seat properties + const [seatType, setSeatType] = useState<"window" | "middle" | "aisle">("window"); + const [seatSize, setSeatSize] = useState<"default" | "sm" | "lg">("default"); + const [showAllTypes, setShowAllTypes] = useState(true); + const [showAllSizes, setShowAllSizes] = useState(true); + + return ( +Window Seat
+Middle Seat
+Aisle Seat
+{seatType} Seat
+Small
+Default
+Large
++ {seatSize === "default" ? "Default" : seatSize === "sm" ? "Small" : "Large"} Size +
+