4 Commits

Author SHA1 Message Date
kudinDmitriyUp
2cbe919deb Bob AI: Update Guarantee section to match v2 design specs 2026-07-02 00:02:04 +00:00
775d8b2112 Merge version_4_1782950089324 into main
Merge version_4_1782950089324 into main
2026-07-01 23:57:09 +00:00
kudinDmitriyUp
6752dde2c8 Bob AI: Update hero section with custom v2 design and animations 2026-07-01 23:56:30 +00:00
bcf54637d7 Merge version_3_1782949824251 into main
Merge version_3_1782949824251 into main
2026-07-01 23:53:29 +00:00
2 changed files with 207 additions and 76 deletions

View File

@@ -1,40 +1,114 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "guarantee" section.
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
import { Zap, TrendingUp, ShieldCheck } from 'lucide-react';
import type { LucideIcon } from "lucide-react";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import ImageOrVideo from "@/components/ui/ImageOrVideo";
import { resolveIcon } from "@/utils/resolve-icon";
import { useEffect, useRef } from 'react';
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
import React from 'react';
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import { ShieldCheck, TrendingUp, Zap } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
gsap.registerPlugin(ScrollTrigger);
export default function GuaranteeSection(): React.JSX.Element {
const items = [
{
icon: Zap,
title: "SPEED",
description: "Guaranteed delivery in 7 business days."
},
{
icon: TrendingUp,
title: "RESULTS",
description: "Design that converts visitors into clients."
},
{
icon: ShieldCheck,
title: "SUPPORT",
description: "Real support — not a ticket queue."
}
];
type AboutFeaturesSplitProps = {
tag: string;
title: string;
description: string;
primaryButton?: { text: string; href: string };
secondaryButton?: { text: string; href: string };
items: { icon: string | LucideIcon; title: string; description: string }[];
textAnimation: "slide-up" | "fade-blur" | "fade";
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
const GuaranteeInline = () => {
return (
<div id="guarantee" data-section="guarantee">
<SectionErrorBoundary name="guarantee">
<AboutFeaturesSplit
tag="OUR PROMISE"
title="PROFESSIONAL WEB IN 7 DAYS"
description="Or you don't pay. That simple."
items={[
{
icon: Zap,
title: "SPEED",
description: "Guaranteed delivery in 7 business days.",
},
{
icon: TrendingUp,
title: "RESULTS",
description: "Design that converts visitors into clients.",
},
{
icon: ShieldCheck,
title: "SUPPORT",
description: "Real support — not a ticket queue.",
},
]}
textAnimation="fade-blur"
imageSrc="http://img.b2bpic.net/free-photo/white-water-drop-background_23-2147787465.jpg"
/>
</SectionErrorBoundary>
<section aria-label="About section" className="py-20">
<div className="flex flex-col gap-8 md:gap-10 mx-auto w-content-width">
<div className="flex flex-col items-center gap-2">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"OUR PROMISE"}</p>
</div>
<TextAnimation
text={"PROFESSIONAL WEB IN 7 DAYS"}
variant={"fade-blur"}
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
/>
<TextAnimation
text={"Or you don't pay. That simple."}
variant={"fade-blur"}
gradientText={false}
tag="p"
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
/>
{(undefined || undefined) && (
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
</div>
)}
</div>
<div className="flex flex-col md:flex-row md:items-stretch gap-5">
<div className="flex flex-col justify-center gap-4 xl:gap-5 2xl:gap-6 p-6 xl:p-7 2xl:p-8 w-full md:w-4/10 2xl:w-35/100 card rounded">
{items.map((item, index) => {
const ItemIcon = resolveIcon(item.icon);
return (
<div key={item.title}>
<div className="flex flex-col gap-2">
<div className="flex items-center justify-center shrink-0 mb-1 size-10 primary-button rounded">
<ItemIcon className="h-2/5 w-2/5 text-primary-cta-text" strokeWidth={1.5} />
</div>
<h3 className="text-2xl font-semibold">{item.title}</h3>
<p className="text-base leading-snug">{item.description}</p>
</div>
{index < items.length - 1 && (
<div className="mt-4 xl:mt-5 2xl:mt-6 border-b border-accent/40" />
)}
</div>
);
})}
</div>
<div className="p-px w-full md:w-6/10 2xl:w-7/10 h-80 md:h-auto card rounded overflow-hidden">
<div className="relative size-full">
<ImageOrVideo imageSrc={"http://img.b2bpic.net/free-photo/white-water-drop-background_23-2147787465.jpg"} className="absolute inset-0 object-cover rounded" />
</div>
</div>
</div>
</div>
</section>
);
};
export default function GuaranteeSection() {
return (
<div data-webild-section="guarantee" id="guarantee">
<GuaranteeInline />
</div>
);
}

View File

@@ -1,49 +1,106 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
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 React from 'react';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const primaryButton = {
text: "See packages",
href: "#packages"
};
const secondaryButton = {
text: "Talk to an expert",
href: "#contact"
};
const items = [
{
imageSrc: "http://img.b2bpic.net/free-photo/modern-geometrical-background-with-white-shapes_23-2148811532.jpg"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-creative-sphere_23-2150885414.jpg"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/white-bokeh-effect-black-background_1017-2740.jpg"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-geometric-abstract-background_1048-10524.jpg"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-abstract-black-white_23-2150853563.jpg"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-geometric-abstract-background_1048-10385.jpg"
}
];
type HeroBillboardCarouselProps = {
tag: string;
title: string;
description: string;
primaryButton: { text: string; href: string };
secondaryButton: { text: string; href: string };
items: ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never })[];
textAnimation: "slide-up" | "fade-blur" | "fade";
};
const HeroInline = () => {
const duplicated = [...items, ...items, ...items, ...items];
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardCarousel
tag="PROFESSIONAL WEB DESIGN · MEXICO"
title="YOUR BUSINESS NEEDS A WEB THAT [X] WORKS."
description="Delivered in 7 days. No excuses."
primaryButton={{
text: "See packages",
href: "#packages",
}}
secondaryButton={{
text: "Talk to an expert",
href: "#contact",
}}
items={[
{
imageSrc: "http://img.b2bpic.net/free-photo/modern-geometrical-background-with-white-shapes_23-2148811532.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-creative-sphere_23-2150885414.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/white-bokeh-effect-black-background_1017-2740.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-geometric-abstract-background_1048-10524.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-abstract-black-white_23-2150853563.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-geometric-abstract-background_1048-10385.jpg",
},
]}
textAnimation="slide-up"
<section
aria-label="Hero section"
className="relative flex flex-col items-center justify-center gap-8 md:gap-10 w-full min-h-svh pt-25 pb-20 md:pt-30"
>
<HeroBackgroundSlot />
<div className="flex flex-col items-center gap-3 w-content-width mx-auto text-center">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"PROFESSIONAL WEB DESIGN · MEXICO"}</p>
</div>
<TextAnimation
text={"YOUR BUSINESS NEEDS A WEB THAT [X] WORKS."}
variant={"slide-up"}
gradientText={true}
tag="h1"
className="md:max-w-8/10 text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-center text-balance"
/>
</SectionErrorBoundary>
<TextAnimation
text={"Delivered in 7 days. No excuses."}
variant={"slide-up"}
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={primaryButton.text} href={primaryButton.href} variant="primary"/>
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary"animationDelay={0.1} />
</div>
</div>
<div className="w-content-width mx-auto overflow-hidden mask-fade-x">
<div className="flex w-max animate-marquee-horizontal" style={{ animationDuration: "60s" }}>
{duplicated.map((item, i) => (
<div key={i} className="shrink-0 w-60 md:w-75 2xl:w-80 aspect-4/5 mr-3 md:mr-5 p-2 xl:p-3 2xl:p-4 card rounded-lg overflow-hidden">
<ImageOrVideo
imageSrc={item.imageSrc}
videoSrc={item.videoSrc}
className="w-full h-full rounded-lg object-cover"
/>
</div>
))}
</div>
</div>
</section>
);
};
export default function HeroSection() {
return (
<div data-webild-section="hero" id="hero">
<HeroInline />
</div>
);
}