Files
7647f308-93ec-4e7c-a765-7ff…/src/app/page.tsx
2026-04-03 10:18:51 +00:00

346 lines
12 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Instagram, Linkedin, ShieldCheck, TrendingUp, Twitter, Zap } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="medium"
background="blurBottom"
cardStyle="gradient-mesh"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "Services",
id: "features",
},
{
name: "Metrics",
id: "metrics",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Contact",
id: "contact",
},
]}
brandName="AgencyCore"
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitTestimonial
useInvertedBackground={false}
background={{
variant: "gradient-bars",
}}
title="Scale Your Influence with Data-Driven Precision"
description="We craft premium social media strategies for brands that demand growth, visibility, and measurable impact in the digital landscape."
testimonials={[
{
name: "Sarah Miller",
handle: "@sarah_tech",
testimonial: "The best social strategy partners we have ever worked with. Truly professional.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg?_wi=1",
},
{
name: "James Chen",
handle: "@j_chen_labs",
testimonial: "Remarkable growth in just 3 months. Data-driven and very responsive.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20365.jpg?_wi=1",
},
{
name: "Elena Rodriguez",
handle: "@elena_growth",
testimonial: "AgencyCore completely transformed our digital presence and ROI.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17885.jpg?_wi=1",
},
{
name: "David Kim",
handle: "@dkim_dev",
testimonial: "Expertise that actually moves the needle. Exceptional delivery.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg?_wi=1",
},
{
name: "Anna Wei",
handle: "@bloom_anna",
testimonial: "Reliable, creative, and always ahead of the trends.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg?_wi=1",
},
]}
buttons={[
{
text: "Start Scaling",
href: "#contact",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/colleagues-working-desk_53876-46928.jpg"
imageAlt="Agency growth strategy workspace"
mediaAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg",
alt: "Client 1",
},
{
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20365.jpg",
alt: "Client 2",
},
{
src: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17885.jpg",
alt: "Client 3",
},
{
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg",
alt: "Client 4",
},
{
src: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg",
alt: "Client 5",
},
]}
marqueeItems={[
{
type: "text",
text: "Strategic Growth",
},
{
type: "text",
text: "Content Creation",
},
{
type: "text",
text: "Performance Data",
},
{
type: "text",
text: "Brand Authority",
},
{
type: "text",
text: "ROI Optimization",
},
]}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={true}
names={[
"TechCorp",
"InnovateLabs",
"GrowthCo",
"MediaFlow",
"Visionary",
"NexusGrid",
"BloomLabs",
]}
title="Trusted by Industry Leaders"
description="We partner with high-growth companies to amplify their voice through premium content and strategy."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="bento-grid"
useInvertedBackground={false}
metrics={[
{
id: "m1",
value: "150M+",
title: "Total Reach",
description: "Combined client audience growth across platforms.",
icon: TrendingUp,
},
{
id: "m2",
value: "4.2x",
title: "Average ROI",
description: "Proven increase in conversion efficiency.",
icon: Zap,
},
{
id: "m3",
value: "98%",
title: "Client Retention",
description: "Long-term partnerships built on trust and results.",
icon: ShieldCheck,
},
]}
title="Proven Performance"
description="Our strategies deliver clear, consistent results for our clients every single month."
/>
</div>
<div id="features" data-section="features">
<FeatureCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
features={[
{
id: "f1",
title: "Strategy & Planning",
description: "Data-informed roadmap for platform-specific growth.",
imageSrc: "http://img.b2bpic.net/free-photo/tablet-with-colorful-arrows_1134-381.jpg",
},
{
id: "f2",
title: "Creative Production",
description: "Premium video and high-end aesthetic asset creation.",
imageSrc: "http://img.b2bpic.net/free-photo/collage-about-movie-time-with-film-roll_23-2149946310.jpg",
},
{
id: "f3",
title: "Performance Analytics",
description: "Deep dive insights to refine content and improve engagement.",
imageSrc: "http://img.b2bpic.net/free-photo/filter-icon-right-side_187299-45688.jpg",
},
]}
title="Our Specialized Agency Services"
description="Comprehensive social media management tailored to achieve your specific business goals."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "Sarah Miller",
role: "CEO, TechCorp",
testimonial: "Exceptional service and constant innovation in strategy.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg?_wi=2",
},
{
id: "t2",
name: "James Chen",
role: "CTO, InnovateLabs",
testimonial: "Results-driven agency. They understand the tech market perfectly.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20365.jpg?_wi=2",
},
{
id: "t3",
name: "Elena Rodriguez",
role: "CMO, GrowthCo",
testimonial: "Fantastic creative assets. Our engagement doubled in weeks.",
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17885.jpg?_wi=2",
},
{
id: "t4",
name: "David Kim",
role: "Product Manager, StartupXYZ",
testimonial: "Clear communication and highly professional execution every time.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg?_wi=2",
},
{
id: "t5",
name: "Anna Wei",
role: "Founder, BloomLabs",
testimonial: "The best decision we made for our brand's digital presence.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg?_wi=2",
},
]}
title="Client Success Stories"
description="See why top brands choose us to manage their digital ecosystem."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={true}
title="Partner with AgencyCore"
description="Ready to scale your influence? Reach out and let's craft your growth strategy today."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Business Email",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your brand goals",
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/asian-woman-with-headset-using-computer_482257-120429.jpg"
mediaPosition="right"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="AgencyCore"
copyrightText="© 2025 | AgencyCore Media. All rights reserved."
socialLinks={[
{
icon: Twitter,
href: "https://twitter.com",
ariaLabel: "Twitter",
},
{
icon: Linkedin,
href: "https://linkedin.com",
ariaLabel: "LinkedIn",
},
{
icon: Instagram,
href: "https://instagram.com",
ariaLabel: "Instagram",
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}