Compare commits

...

4 Commits

Author SHA1 Message Date
kudinDmitriyUp
894b1ea5aa Bob AI: Update testimonials with initials and new names 2026-06-18 17:44:20 +00:00
d4143f993d Switch to version 43: modified src/pages/HomePage/sections/Testimonials.tsx 2026-06-18 17:41:42 +00:00
bd1cba785d Switch to version 43: modified src/pages/HomePage/sections/Contact.tsx 2026-06-18 17:41:42 +00:00
b261165344 Merge version_44_1781804286348 into main
Merge version_44_1781804286348 into main
2026-06-18 17:41:11 +00:00
2 changed files with 15 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ export default function ContactSection(): React.JSX.Element {
text="Ready to build your next brand identity?"
primaryButton={{
text: "Contact Us",
href: "mailto:hello@yusupov.agency",
href: "",
}}
secondaryButton={{
text: "Portfolio",

View File

@@ -17,19 +17,29 @@ const testimonials = [
quote: "Incredible creative energy and professional execution.",
},
{
name: "UCC",
name: "Based UZB",
role: "CEO",
quote: "Best design partner we have ever collaborated with.",
},
{
name: "OldShahar",
name: "Tansiq",
role: "CEO",
quote: "Their work ethic is unparalleled in Central Asia.",
},
{
name: "UCC",
name: "Atirgul",
role: "CEO",
quote: "The electric blue design language is now our signature.",
},
{
name: "Stabrini",
role: "CEO",
quote: "A fantastic team that delivers beyond expectations.",
},
{
name: "Kavestro",
role: "CEO",
quote: "Highly recommend for any creative and branding needs.",
}
];
@@ -37,7 +47,7 @@ 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);