5 Commits

Author SHA1 Message Date
841853e6fb Merge version_2 into main
Merge version_2 into main
2026-04-06 20:41:36 +00:00
7448e41edc Update src/app/page.tsx 2026-04-06 20:41:30 +00:00
328af2e76c Merge version_1 into main
Merge version_1 into main
2026-04-06 20:39:24 +00:00
43ff0b3821 Merge version_1 into main
Merge version_1 into main
2026-04-06 20:38:34 +00:00
b7f2ecbca7 Merge version_1 into main
Merge version_1 into main
2026-04-06 20:31:14 +00:00

View File

@@ -7,8 +7,6 @@ import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/F
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Search, Smartphone, Sparkles, Zap } from "lucide-react"; import { Search, Smartphone, Sparkles, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -87,40 +85,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={true}
names={[
"TechCorp", "Innovate", "FutureSolutions", "GlobalStream", "DataFlow"]}
title="Trusted by Growing Businesses"
description="We partner with ambitious companies to bring their visions to life."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
useInvertedBackground={false}
testimonial="Working with this agency transformed our digital strategy. Our new site is not only beautiful but drives real business growth."
rating={5}
author="Sarah Johnson, CEO of TechCorp"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/man-browsing-digital-tablet-office_329181-15802.jpg", alt: "Client 1"},
{
src: "http://img.b2bpic.net/free-photo/creative-way-photograph-product_23-2148970208.jpg", alt: "Client 2"},
{
src: "http://img.b2bpic.net/free-photo/man-focused-while-working-computer_329181-16283.jpg", alt: "Client 3"},
{
src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", alt: "Client 4"},
{
src: "http://img.b2bpic.net/free-photo/proud-entrepreneur-with-employees-background_1098-3585.jpg", alt: "Client 5"},
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCTA <ContactCTA
useInvertedBackground={true} useInvertedBackground={true}
@@ -148,4 +112,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }