Bob AI: Populate src/pages/ReelsProductsPage.tsx (snippet builder, 2 sections)

This commit is contained in:
kudinDmitriyUp
2026-06-22 18:41:37 +00:00
parent 7fdb84fdf5
commit d8f3f2b4e2

View File

@@ -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 (
<div className="min-h-screen bg-background text-foreground flex flex-col">
<NavbarCentered
logo="ReelPro"
navItems={routes.map((r) => ({ name: r.label, href: r.path }))}
ctaButton={{ text: "Get Started", href: "/contact" }}
/>
<main className="flex-grow">
<HeroBillboardScroll
tag="Short-Form Mastery"
title="Scroll-Stopping Reels for Your Brand"
description="High-converting short-form video content designed to engage your audience, build trust, and drive sales on autopilot."
primaryButton={{ text: "View Packages", href: "#packages" }}
secondaryButton={{ text: "Book a Strategy Call", href: "/contact" }}
imageSrc="https://images.unsplash.com/photo-1611162617474-5b21e879e113?q=80&w=2000&auto=format&fit=crop"
/>
<div id="packages">
<ProductMediaCards
tag="Our Packages"
title="Choose Your Content Engine"
description="From single viral hits to complete monthly content management, we have a package that fits your growth goals."
products={[
{
name: "Starter Pack",
price: "$499/mo",
imageSrc: "https://images.unsplash.com/photo-1616469829581-73993eb86b02?q=80&w=800&auto=format&fit=crop",
onClick: () => 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")
}
]}
/>
</div>
<FeaturesBento
tag="Why Us"
title="Built for the Algorithm"
description="We don't just make videos; we engineer attention using data-backed strategies and high-end production."
features={[
{
title: "Trend Analysis",
description: "We monitor platforms 24/7 to hop on audio and visual trends before they peak, maximizing your organic reach.",
imageSrc: "https://images.unsplash.com/photo-1611162616305-c69b3fa7fbe0?q=80&w=800&auto=format&fit=crop"
},
{
title: "Hook Engineering",
description: "The first 3 seconds dictate success. We script and design visual hooks optimized for maximum viewer retention.",
imageSrc: "https://images.unsplash.com/photo-1611162618071-b39a2ec055fb?q=80&w=800&auto=format&fit=crop"
},
{
title: "High-End Editing",
description: "Crisp cuts, dynamic captions, and immersive sound design that keeps viewers glued to the screen until the end.",
imageSrc: "https://images.unsplash.com/photo-1611162616475-46b635cb6868?q=80&w=800&auto=format&fit=crop"
}
]}
/>
</main>
<FooterMinimal
brand="ReelPro"
copyright="© 2024 ReelPro Agency. All rights reserved."
/>
</div>
<>
<div data-webild-section="HeroBillboard"><section aria-label="Hero section" className="relative pt-25 pb-20 md:pt-30"><HeroBackgroundSlot /><div className="flex flex-col gap-12 md:gap-15 w-content-width mx-auto"><div className="flex flex-col items-center gap-3 text-center"><AvatarGroup avatarsSrc={["https://img.freepik.com/free-photo/portrait-smiling-fisherman-holding-fishing-rod_23-2148019154.jpg","https://img.freepik.com/free-photo/young-man-fishing-lake_1303-22314.jpg","https://img.freepik.com/free-photo/cheerful-fisherman-holding-his-catch_23-2148019168.jpg"]} label="Trusted by Carlos R., Maria L., and our community of anglers" className="mb-1" /><TextAnimation text="Engineered for the Perfect Catch" variant="fade-blur" gradientText={true} tag="h1" className="md:max-w-8/10 text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-center text-balance" /><TextAnimation text="Discover our curated collection of high-performance fishing reels. Built for durability and precision, these reels are ready for your next adventure on the water." variant="fade-blur" gradientText={false} tag="p" className="md:max-w-7/10 text-lg md:text-xl leading-snug text-balance" /><div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3"><Button text="Shop Reels" href="/reels-products" variant="primary" /><Button text="Read Guide" href="/reel-guide" variant="secondary" animationDelay={0.1} /></div></div><ScrollReveal variant="slide-up" delay={0.2} className="w-full p-2 xl:p-3 2xl:p-4 card rounded overflow-hidden"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/fishing-tackle-with-fishing-rod-water-background_169016-21841.jpg" className="aspect-4/5 md:aspect-video" /></ScrollReveal></div></section></div>
<div data-webild-section="ProductRatingCards"><section aria-label="Products section" className="py-20"><div className="w-content-width mx-auto flex justify-center"><Loader2 className="size-8 animate-spin text-foreground" strokeWidth={1.5} /></div></section></div>
</>
);
}
}