diff --git a/src/pages/ReelsProductsPage.tsx b/src/pages/ReelsProductsPage.tsx index c8a3461..f4f9921 100644 --- a/src/pages/ReelsProductsPage.tsx +++ b/src/pages/ReelsProductsPage.tsx @@ -1,86 +1,19 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; -import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import FeaturesBento from "@/components/sections/features/FeaturesBento"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import AvatarGroup from "@/components/ui/AvatarGroup"; +import { Star, Loader2 } from "lucide-react"; +import { cls } from "@/lib/utils"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import useProducts from "@/hooks/useProducts"; export default function ReelsProductsPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "/contact" }} - /> - -
- - -
- console.log("Starter Pack clicked") - }, - { - name: "Growth Engine", - price: "$1,299/mo", - imageSrc: "https://images.unsplash.com/photo-1533227260879-1090f11683f5?q=80&w=800&auto=format&fit=crop", - onClick: () => console.log("Growth Engine clicked") - }, - { - name: "Viral Mastery", - price: "$2,499/mo", - imageSrc: "https://images.unsplash.com/photo-1516280440502-65f5363e3b5e?q=80&w=800&auto=format&fit=crop", - onClick: () => console.log("Viral Mastery clicked") - } - ]} - /> -
- - -
- - -
+ <> +
+
+ ); -} \ No newline at end of file +}