diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..1b498c7 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,323 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Star, Sparkles } from 'lucide-react'; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file