diff --git a/src/app/products/product-3/page.tsx b/src/app/products/product-3/page.tsx new file mode 100644 index 0000000..b45fa2c --- /dev/null +++ b/src/app/products/product-3/page.tsx @@ -0,0 +1,93 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import { Facebook, Instagram, Video, Handshake } from "lucide-react"; + +export default function ProductThreePage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}