4 Commits

Author SHA1 Message Date
e9f28e8fa8 Update src/app/page.tsx 2026-03-14 18:18:36 +00:00
3805562aac Merge version_4 into main
Merge version_4 into main
2026-03-14 18:16:57 +00:00
849cfef128 Update src/app/page.tsx 2026-03-14 18:16:53 +00:00
72d0c7a122 Merge version_3 into main
Merge version_3 into main
2026-03-14 18:14:16 +00:00

View File

@@ -8,7 +8,7 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Award, CheckCircle, Shield, Sparkles, Star, Zap } from 'lucide-react';
@@ -33,8 +33,7 @@ export default function LandingPage() {
navItems={[
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" }
{ name: "About", id: "about" }
]}
button={{ text: "Get Started", href: "#contact" }}
/>
@@ -111,9 +110,9 @@ export default function LandingPage() {
tagIcon={CheckCircle}
tagAnimation="slide-up"
buttons={[
{ text: "Explore All Services", href: "#contact" }
{ text: "Book Your Design Strategy Call", href: "#contact" }
]}
buttonAnimation="slide-up"
buttonAnimation="blur-reveal"
className="relative"
containerClassName="max-w-7xl mx-auto px-4 py-16 md:py-24"
textBoxTitleClassName="text-4xl md:text-5xl font-bold mb-4"
@@ -206,49 +205,7 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials" className="relative">
<TestimonialCardOne
testimonials={[
{
id: "client-1", name: "Sarah Mitchell", role: "CEO", company: "Fashion Forward Inc", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-businesswoman-work_1098-3861.jpg", imageAlt: "Sarah Mitchell"
},
{
id: "client-2", name: "James Rodriguez", role: "Founder", company: "Tech Innovations Co", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg", imageAlt: "James Rodriguez"
},
{
id: "client-3", name: "Emily Chen", role: "Marketing Director", company: "Global Commerce Ltd", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "Emily Chen"
},
{
id: "client-4", name: "Michael Thompson", role: "Business Owner", company: "Local Services Group", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-good-looking-hispanic-businessman-standing-arms-crossed-outside-office_662251-2067.jpg", imageAlt: "Michael Thompson"
},
{
id: "client-5", name: "Jennifer Lee", role: "Product Manager", company: "Digital Solutions Pro", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280734.jpg", imageAlt: "Jennifer Lee"
},
{
id: "client-6", name: "David Kumar", role: "Executive Director", company: "Enterprise Systems Inc", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3796.jpg", imageAlt: "David Kumar"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
title="What Our Clients Say"
description="Real feedback from real clients about their experience working with our design studio."
textboxLayout="default"
useInvertedBackground={true}
tag="Client Stories"
tagIcon={Star}
tagAnimation="slide-up"
className="relative"
containerClassName="max-w-7xl mx-auto px-4 py-16 md:py-24"
textBoxTitleClassName="text-4xl md:text-5xl font-bold mb-4 text-center"
textBoxDescriptionClassName="text-lg text-center text-opacity-80 mb-12"
/>
</div>
<div id="contact" data-section="contact" className="relative">
<ContactText
@@ -283,7 +240,6 @@ export default function LandingPage() {
},
{
items: [
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
@@ -305,4 +261,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}