diff --git a/src/app/catering/page.tsx b/src/app/catering/page.tsx index 01385ef..1ce9662 100644 --- a/src/app/catering/page.tsx +++ b/src/app/catering/page.tsx @@ -1,265 +1,56 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import { Feather, Package, ShoppingBag, Sparkles, Utensils } from "lucide-react"; +import { Handshake, ChefHat } from 'lucide-react'; + +export default function CateringPage() { + const navItems = [ + { + name: "Home", id: "/"}, + { + name: "Menu", id: "/menu"}, + { + name: "Catering", id: "/catering"}, + { + name: "Reviews", id: "/reviews"}, + { + name: "Contact", id: "/contact"} + ]; -export default function LandingPage() { return ( - - + -
- -
+
+

Catering Services

+

Offering bespoke catering for all your events.

+
-
- -
- -
- -
- - -
+
+

Why Choose Our Catering?

+ +
); }