diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx new file mode 100644 index 0000000..0cfc408 --- /dev/null +++ b/src/app/product/page.tsx @@ -0,0 +1,179 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { BookOpen, Brain, CheckCircle, Zap } from 'lucide-react'; + +export default function ProductPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file