diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx new file mode 100644 index 0000000..fc14dba --- /dev/null +++ b/src/app/product/page.tsx @@ -0,0 +1,116 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Star } from "lucide-react"; + +export default function ProductPage() { + return ( + + + + +
+ alert('Added to cart!') + }, + { + text: "Back to Landing", href: "/landing" + } + ]} + /> +
+ + +
+
+ ); +} \ No newline at end of file