diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..3b1c6cf --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,313 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { + Sparkles, + Star, + Zap, + Gift, + Heart, + Badge, + HelpCircle, + Package, + ShoppingBag, + Home, + CheckCircle, + Truck, +} from "lucide-react"; + +export default function StorePage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}