diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..407f827 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ShoppingCart, MessageCircle, Star, Award, Facebook, Instagram } from "lucide-react"; + +export default function ProductPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + +
+
+
₹550
+
+ + +
+
+
+
+
+ ); +} \ No newline at end of file