diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..1dc926a --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,42 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function CheckoutPage() { + return ( + + +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 0ec42b7..ba6ab0e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,8 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Menu", id: "menu" }, { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" }, + { name: "Cart", id: "/cart" }, ]} brandName="Joli Café Bar" /> diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx new file mode 100644 index 0000000..23fa0bf --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,61 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function ShopPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}