Compare commits

...

18 Commits

Author SHA1 Message Date
kudinDmitriyUp
5be6e8772d Bob AI: Replaced profile pictures with initials and updated names in 2026-06-18 17:40:35 +00:00
d6306d74ac Switch to version 42: modified src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:34:50 +00:00
9e246ba81f Merge version_43_1781803941019 into main
Merge version_43_1781803941019 into main
2026-06-18 17:32:42 +00:00
a6635b8c5d Update src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:32:38 +00:00
d6c6d2aad5 Merge version_42_1781803907487 into main
Merge version_42_1781803907487 into main
2026-06-18 17:32:08 +00:00
a9ceb5c41e Update src/pages/HomePage/sections/Portfolio.tsx 2026-06-18 17:32:04 +00:00
d78eccd5c4 Switch to version 41: modified src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:11:13 +00:00
e56c564bc2 Merge version_42_1781802572747 into main
Merge version_42_1781802572747 into main
2026-06-18 17:09:55 +00:00
6b28199f14 Update src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:09:51 +00:00
aad00592f9 Switch to version 41: modified src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:08:46 +00:00
561c45c920 Merge version_42_1781802220039 into main
Merge version_42_1781802220039 into main
2026-06-18 17:04:00 +00:00
d4aa973e2d Update src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:03:57 +00:00
6282a01193 Merge version_41_1781801945730 into main
Merge version_41_1781801945730 into main
2026-06-18 17:01:47 +00:00
kudinDmitriyUp
6a4034858b Bob AI: fix build errors (attempt 2) 2026-06-18 17:01:20 +00:00
kudinDmitriyUp
db8294497c Bob AI: fix build errors (attempt 1) 2026-06-18 17:00:31 +00:00
kudinDmitriyUp
e5d4d21d1b Bob AI: Removed Team link from navbar 2026-06-18 16:59:45 +00:00
d680c741c2 Merge version_40_1781801877916 into main
Merge version_40_1781801877916 into main
2026-06-18 16:58:17 +00:00
1c185d0cd5 Merge version_39_1781801692740 into main
Merge version_39_1781801692740 into main
2026-06-18 16:56:51 +00:00
3 changed files with 126 additions and 51 deletions

View File

@@ -15,10 +15,6 @@ export default function Layout() {
"name": "Work",
"href": "#portfolio"
},
{
"name": "Team",
"href": "#team"
},
{
"name": "Contact",
"href": "#contact"

View File

@@ -15,7 +15,7 @@ const items = [
{
title: "Logo Architecture",
description: "Iconic marks for modern brands.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3D8oNa3nvt8Cz2KlfMhFTVX9fbI/uploaded-1781800407915-g3jh718l.png"
imageSrc: "https://storage.googleapis.com/webild/users/user_3D8oNa3nvt8Cz2KlfMhFTVX9fbI/uploaded-1781803897980-hc5007ly.png"
},
{
title: "Tech Platform UI",

View File

@@ -1,52 +1,131 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" 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 TextAnimation from "@/components/ui/TextAnimation";
import ImageOrVideo from "@/components/ui/ImageOrVideo";
import ScrollReveal from "@/components/ui/ScrollReveal";
import React from 'react';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const testimonials = [
{
name: "UCC",
role: "CEO",
quote: "Yusupov Agency completely transformed our brand visibility.",
},
{
name: "OldShahar",
role: "CEO",
quote: "Incredible creative energy and professional execution.",
},
{
name: "UCC",
role: "CEO",
quote: "Best design partner we have ever collaborated with.",
},
{
name: "OldShahar",
role: "CEO",
quote: "Their work ethic is unparalleled in Central Asia.",
},
{
name: "UCC",
role: "CEO",
quote: "The electric blue design language is now our signature.",
}
];
type Testimonial = {
name: string;
role: string;
quote: string;
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
const TestimonialsInline = () => {
const half = Math.ceil(testimonials.length / 2);
const topRow = testimonials.slice(0, half);
const bottomRow = testimonials.slice(half);
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialMarqueeCards
tag="Client Success"
title="Trusted by Leaders"
description="What our clients say about our creative process."
testimonials={[
{
name: "Amina S.",
role: "CEO, FinTech",
quote: "Yusupov Agency completely transformed our brand visibility.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg",
},
{
name: "Bakhtiyar K.",
role: "Marketing Head",
quote: "Incredible creative energy and professional execution.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
},
{
name: "Gulnara D.",
role: "Retail Founder",
quote: "Best design partner we have ever collaborated with.",
imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-outside-modern-office-building_1139-1076.jpg",
},
{
name: "Damir N.",
role: "Start-up Lead",
quote: "Their work ethic is unparalleled in Central Asia.",
imageSrc: "http://img.b2bpic.net/free-photo/employee-working-with-trendy-clothes_482257-78860.jpg",
},
{
name: "Farida M.",
role: "Director",
quote: "The electric blue design language is now our signature.",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-blue-clothes-smiling_23-2148055977.jpg",
},
]}
/>
</SectionErrorBoundary>
<section aria-label="Testimonials section" className="pt-20 pb-10">
<div className="flex flex-col gap-8 md:gap-10">
<div className="flex flex-col items-center gap-2 w-content-width mx-auto">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"Client Success"}</p>
</div>
<TextAnimation
text={"Trusted by Leaders"}
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={"What our clients say about our creative process."}
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>
<ScrollReveal variant="fade-blur" className="flex flex-col w-content-width mx-auto">
<div className="overflow-hidden mask-fade-x">
<div className="flex w-max animate-marquee-horizontal mb-5" style={{ animationDuration: "30s" }}>
{[...topRow, ...topRow, ...topRow, ...topRow].map((testimonial, index) => (
<div key={`top-${index}`} className="flex flex-col justify-between gap-4 xl:gap-5 2xl:gap-6 shrink-0 w-72 md:w-80 mr-5 p-6 xl:p-7 2xl:p-8 rounded card">
<p className="text-lg leading-snug line-clamp-3">{testimonial.quote}</p>
<div className="flex items-center gap-3">
<div className="flex items-center justify-center size-10 md:size-11 2xl:size-12 rounded-full bg-primary-cta text-primary-cta-text font-bold text-lg shrink-0">
{testimonial.name.charAt(0)}
</div>
<div className="flex flex-col min-w-0">
<span className="text-base text-foreground font-semibold leading-snug truncate">{testimonial.name}</span>
<span className="text-base text-foreground/75 leading-snug truncate">{testimonial.role}</span>
</div>
</div>
</div>
))}
</div>
</div>
<div className="overflow-hidden mask-fade-x">
<div className="flex w-max animate-marquee-horizontal-reverse mb-10" style={{ animationDuration: "30s" }}>
{[...bottomRow, ...bottomRow, ...bottomRow, ...bottomRow].map((testimonial, index) => (
<div key={`bottom-${index}`} className="flex flex-col justify-between gap-4 xl:gap-5 2xl:gap-6 shrink-0 w-72 md:w-80 mr-5 p-6 xl:p-7 2xl:p-8 rounded card">
<p className="text-lg leading-snug line-clamp-3">{testimonial.quote}</p>
<div className="flex items-center gap-3">
<div className="flex items-center justify-center size-10 md:size-11 2xl:size-12 rounded-full bg-primary-cta text-primary-cta-text font-bold text-lg shrink-0">
{testimonial.name.charAt(0)}
</div>
<div className="flex flex-col min-w-0">
<span className="text-base text-foreground font-semibold leading-snug truncate">{testimonial.name}</span>
<span className="text-base text-foreground/75 leading-snug truncate">{testimonial.role}</span>
</div>
</div>
</div>
))}
</div>
</div>
</ScrollReveal>
</div>
</section>
);
};
export default function TestimonialsSection() {
return (
<div data-webild-section="testimonials" id="testimonials">
<TestimonialsInline />
</div>
);
}