3 Commits

Author SHA1 Message Date
b4e061a216 Update src/app/page.tsx 2026-05-07 23:11:09 +00:00
80db5bebcb Update src/app/page.tsx 2026-05-07 23:10:34 +00:00
b234866e7d Merge version_1 into main
Merge version_1 into main
2026-05-07 23:07:08 +00:00

View File

@@ -11,7 +11,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Award, CheckCircle, Zap } from "lucide-react";
export default function LandingPage() {
@@ -100,19 +100,17 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
textboxLayout="default"
<TestimonialCardFifteen
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah J.", role: "CEO", testimonial: "Exceptional work! My business grew significantly with the new site.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-time-me-please_329181-17310.jpg", imageAlt: "professional client portrait smile" },
{ id: "2", name: "Michael C.", role: "Director", testimonial: "Professional, fast, and responsive. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg", imageAlt: "professional male client portrait" },
{ id: "3", name: "Emily R.", role: "Marketing", testimonial: "They truly understand our branding and delivery was seamless.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg", imageAlt: "professional office client portrait" },
{ id: "4", name: "David K.", role: "Founder", testimonial: "The best investment for my company this year.", imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-with-cup-coffee_23-2149330971.jpg", imageAlt: "business executive portrait professional" },
{ id: "5", name: "Laura S.", role: "Manager", testimonial: "Efficient workflow and stunning design results.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-blue-jacket_23-2149020770.jpg", imageAlt: "creative business owner portrait" },
testimonial="The team at WebBuild Pros delivered exactly what we needed to take our business to the next level. Their process is transparent, authentic, and results-oriented."
rating={5}
author="Alex R., Creative Lead"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg", alt: "client avatar" },
{ src: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg", alt: "client avatar" }
]}
title="Client Success"
description="What our clients say about us."
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
/>
</div>
@@ -174,4 +172,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}