diff --git a/src/app/page.tsx b/src/app/page.tsx index 82ef9a8..53adbec 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,37 +16,25 @@ import { Award, Shield, Zap } from "lucide-react"; export default function LandingPage() { return (
@@ -322,50 +142,10 @@ export default function LandingPage() {
); -} +} \ No newline at end of file diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx new file mode 100644 index 0000000..5c60996 --- /dev/null +++ b/src/app/product/page.tsx @@ -0,0 +1,82 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard'; +import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ProductDetailPage() { + return ( + + + + +
+ console.log("Added") }, + { text: "Buy Now", onClick: () => console.log("Buy Now") } + ]} + /> +
+ + + + + + +
+
+ ); +} \ No newline at end of file