diff --git a/src/pages/MenuPage.tsx b/src/pages/MenuPage.tsx index f486e0b..9c73c63 100644 --- a/src/pages/MenuPage.tsx +++ b/src/pages/MenuPage.tsx @@ -1,98 +1,29 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; -import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import FeaturesTaggedCards from "@/components/sections/features/FeaturesTaggedCards"; -import ContactCta from "@/components/sections/contact/ContactCta"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AvatarGroup from "@/components/ui/AvatarGroup"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; +import { ArrowUpRight, Loader2 } from "lucide-react"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import useProducts from "@/hooks/useProducts"; export default function MenuPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Reservations", href: "/reservations" }} - /> - - - - {} - }, - { - name: "Kibbeh Intention", - price: "$18", - imageSrc: "https://images.unsplash.com/photo-1604908176997-125f25cc6f3d?auto=format&fit=crop&q=80", - onClick: () => {} - }, - { - name: "Mixed Grill", - price: "$35", - imageSrc: "https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&q=80", - onClick: () => {} - } - ]} - /> - - - - - - -
+ <> +
+

Culinary Excellence

+
+
+
+
+
+
+
+
+
+

Dine With Us

+ ); -} \ No newline at end of file +}