Files
0a8afec3-0da3-447c-8bc3-888…/src/app/page.tsx
2026-03-06 08:59:20 +00:00

298 lines
12 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import AboutMetric from "@/components/sections/about/AboutMetric";
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Zap, TrendingUp, Sparkles, Workflow, Target, BarChart3, Search, Link2, Video, Image, Palette, Rocket } from "lucide-react";
export default function HomePage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Agency Consulting", id: "/consulting" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Book A Strategy Call", href: "/contact" }}
brandName="DYE MEDIA"
/>
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="DYE MEDIA"
description="Creative Performance Marketing Studio blending high-impact design with data-driven advertising strategy"
buttons={[
{ text: "Book A Strategy Call", href: "/contact" },
{ text: "View Our Work", href: "/portfolio" },
]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-psd/marketing-agency-template-design_23-2150783187.jpg",
imageAlt: "Advertising creative design work",
},
{
imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page_52683-70252.jpg",
imageAlt: "Website UI design interface",
},
{
imageSrc: "http://img.b2bpic.net/free-vector/geometric-business-cards-template_23-2149151388.jpg",
imageAlt: "Branding and visual identity work",
},
]}
autoplayDelay={4000}
showDimOverlay={true}
/>
</div>
<div id="featured-creative" data-section="featured-creative">
<MetricCardEleven
metrics={[
{
id: "1",
value: "10M+",
title: "Ad Impressions Generated",
description: "Across performance campaigns managed",
imageSrc: "http://img.b2bpic.net/free-psd/digital-marketing-agency-ad-with-team-collaboration_505751-8227.jpg?_wi=1",
imageAlt: "Featured advertising campaign creative",
},
{
id: "2",
value: "$10M+",
title: "Ad Spend Managed",
description: "Performance marketing campaigns optimized",
imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-template-with-photo_23-2148492826.jpg?_wi=1",
imageAlt: "Featured website design project",
},
{
id: "3",
value: "500+",
title: "Creative Assets Produced",
description: "High-impact ads and visual content",
imageSrc: "http://img.b2bpic.net/free-psd/modern-business-card-design-pan-cafe-bakery_23-2152033501.jpg?_wi=1",
imageAlt: "Featured branding and design work",
},
]}
title="Featured Creative"
description="A curated selection of our high-impact creative work that drives results"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="marketing-systems" data-section="marketing-systems">
<AboutMetric
title="Marketing Systems Built For Growth"
metrics={[
{ icon: Zap, label: "Creative-First Strategy", value: "High-Impact" },
{ icon: TrendingUp, label: "Performance-Driven", value: "Data-Led" },
{ icon: Sparkles, label: "Visual Content", value: "Premium" },
{ icon: Workflow, label: "Scalable Systems", value: "Efficient" },
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="services-preview" data-section="services-preview">
<FeatureCardTen
title="Services"
description="Comprehensive marketing solutions designed to drive growth and scale your business"
tag="What We Offer"
features={[
{
id: "1",
title: "Google Ads & Pay-Per-Click",
description: "High-converting PPC campaigns that drive qualified leads and sales",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg?_wi=1",
imageAlt: "Google Ads and PPC advertising",
},
items: [
{ icon: Target, text: "Lead generation campaigns" },
{ icon: BarChart3, text: "Conversion optimization" },
{ icon: Zap, text: "Continuous A/B testing" },
],
reverse: false,
},
{
id: "2",
title: "Search Engine Optimization",
description: "Organic traffic growth through strategic SEO and content optimization",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=1",
imageAlt: "SEO optimization strategy",
},
items: [
{ icon: Search, text: "Keyword research & strategy" },
{ icon: Link2, text: "Technical & on-page SEO" },
{ icon: TrendingUp, text: "Organic ranking growth" },
],
reverse: true,
},
{
id: "3",
title: "Creative Content Production",
description: "High-impact visual content including video ads, graphics, and social media assets",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/professional-photographer-shooting-young-woman_1268-21886.jpg?_wi=1",
imageAlt: "Video and content production",
},
items: [
{ icon: Video, text: "Video ads & motion graphics" },
{ icon: Image, text: "Ad creative design" },
{ icon: Palette, text: "Social media graphics" },
],
reverse: false,
},
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="what-makes-different" data-section="what-makes-different">
<TestimonialCardTwelve
cardTitle="Creative Meets Performance — Strategy, Execution, Growth"
cardTag="What Makes Dye Media Different"
testimonials={[
{
id: "1",
name: "Creative Excellence",
imageSrc: "http://img.b2bpic.net/free-psd/digital-marketing-agency-ad-with-team-collaboration_505751-8227.jpg?_wi=2",
imageAlt: "Creative excellence icon",
},
{
id: "2",
name: "Performance Focus",
imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-template-with-photo_23-2148492826.jpg?_wi=2",
imageAlt: "Performance focus icon",
},
{
id: "3",
name: "Strategy First",
imageSrc: "http://img.b2bpic.net/free-psd/modern-business-card-design-pan-cafe-bakery_23-2152033501.jpg?_wi=2",
imageAlt: "Strategy first icon",
},
{
id: "4",
name: "Real Results",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg?_wi=2",
imageAlt: "Real results icon",
},
]}
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Innovative Brands"
description="We've partnered with leading companies across diverse industries to drive growth and scale"
tag="Our Partners"
names={["TechFlow", "InnovateLab", "GrowthCo", "StartupXYZ", "BrandScale", "PerformanceHub", "CreativeStudio", "MarketingPro"]}
logos={[
"http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg",
"http://img.b2bpic.net/free-vector/gradient-instagram-shop-logo-design_23-2149714663.jpg",
"http://img.b2bpic.net/free-vector/fashion-store-lab-logo-template_23-2148631158.jpg",
"http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg",
"http://img.b2bpic.net/free-vector/restaurant-business-company-logo_23-2148462315.jpg",
"http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg",
"http://img.b2bpic.net/free-vector/hand-drawn-shop-local-collection_23-2149575775.jpg",
]}
textboxLayout="default"
useInvertedBackground={false}
showCard={true}
speed={40}
/>
</div>
<div id="cta" data-section="cta">
<ContactCenter
tag="Ready To Grow?"
title="Ready To Grow Your Brand?"
description="Schedule a strategy call with our team to discuss your marketing goals and how we can help scale your business"
tagIcon={Rocket}
tagAnimation="slide-up"
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
buttonText="Schedule A Strategy Call"
inputPlaceholder="Enter your email"
termsText="We respect your privacy. Unsubscribe at any time."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Navigate",
items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "About", href: "/about" },
],
},
{
title: "Resources",
items: [
{ label: "Agency Consulting", href: "/consulting" },
{ label: "Contact", href: "/contact" },
{ label: "Strategy Call", href: "/contact" },
{ label: "Case Studies", href: "/portfolio" },
],
},
{
title: "Company",
items: [
{ label: "About Dye Media", href: "/about" },
{ label: "Our Process", href: "/services" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Disclaimer", href: "#" },
],
},
]}
bottomLeftText="© 2025 Dye Media. All rights reserved."
bottomRightText="Creative Performance Marketing Studio"
/>
</div>
</ThemeProvider>
);
}