diff --git a/src/app/espresso-bar/page.tsx b/src/app/espresso-bar/page.tsx new file mode 100644 index 0000000..87476c8 --- /dev/null +++ b/src/app/espresso-bar/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function EspressoBarPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 6e31040..f6779fc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { ); -} +} \ No newline at end of file