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?

+ +
); } diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index d04c0ab..3b535e3 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -1,283 +1,51 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -export default function LandingPage() { +export default function ReviewsPage() { + const navItems = [ + { + name: "Home", id: "/"}, + { + name: "Menu", id: "/menu"}, + { + name: "Catering", id: "/catering"}, + { + name: "Reviews", id: "/reviews"}, + { + name: "Contact", id: "/contact"} + ]; + return ( - - + -
- -
+
+

Customer Reviews

+

See what our amazing customers have to say about us!

+
-
- -
- -
-
- - -
+
+ {/* Potentially TestimonialCardSix or similar would go here. */} +
); }