diff --git a/src/app/coffee-menu/page.tsx b/src/app/coffee-menu/page.tsx new file mode 100644 index 0000000..e7aa95c --- /dev/null +++ b/src/app/coffee-menu/page.tsx @@ -0,0 +1,142 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Coffee, Mail } from "lucide-react"; + +export default function CoffeeMenuPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 3495561..1ca1d94 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,6 +30,7 @@ export default function CaffePage() { navItems={[ { name: "About", id: "about" }, { name: "Menu", id: "features" }, + { name: "Coffee Menu", id: "/coffee-menu" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" } ]} @@ -146,7 +147,7 @@ export default function CaffePage() { { label: "Espresso Drinks", href: "features" }, { label: "Single Origins", href: "features" }, { label: "Pastries & Food", href: "features" }, - { label: "Seasonal Specials", href: "features" } + { label: "Coffee Menu", href: "/coffee-menu" } ] }, {