diff --git a/src/app/page.tsx b/src/app/page.tsx index d39d6c0..545f7ae 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,224 @@ -import { redirect } from 'next/navigation'; +'use client'; + +import { ThemeProvider } from 'next-themes'; +import { Sparkles, CheckCircle, Gem, Package, Globe, LifeBuoy } from 'lucide-react'; + +// Navbar +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +// Sections +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import ContactText from '@/components/sections/contact/ContactText'; export default function Home() { - redirect('/components'); -} \ No newline at end of file + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ ); +}