diff --git a/src/app/bagels/page.tsx b/src/app/bagels/page.tsx new file mode 100644 index 0000000..c987793 --- /dev/null +++ b/src/app/bagels/page.tsx @@ -0,0 +1,95 @@ +"use client" + +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Croissant } from "lucide-react"; + +export default function BagelsPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/coffees/page.tsx b/src/app/coffees/page.tsx new file mode 100644 index 0000000..2922026 --- /dev/null +++ b/src/app/coffees/page.tsx @@ -0,0 +1,103 @@ +"use client" + +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Coffee, Mail } from "lucide-react"; + +export default function CoffeesPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 256a993..58c7888 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,9 @@ export default function LandingPage() { { name: "Menu", id: "products" }, { name: "Our Story", id: "story" }, { name: "Visit Us", id: "contact" }, - { name: "Reviews", id: "testimonials" } + { name: "Reviews", id: "testimonials" }, + { name: "Coffees", id: "/coffees" }, + { name: "Bagels", id: "/bagels" } ]} button={{ text: "Order Now", href: "contact" }} />