Merge version_1 into main #1
465
src/app/page.tsx
465
src/app/page.tsx
@@ -27,358 +27,135 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "portfolio",
|
||||
},
|
||||
{
|
||||
name: "Process",
|
||||
id: "process",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="LUX CREATIVE"
|
||||
button={{
|
||||
text: "Book Call",
|
||||
href: "#contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Process", id: "process" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="LUX CREATIVE"
|
||||
button={{ text: "Book Call", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="We Build Digital Experiences That Matter."
|
||||
description="Crafting bold brands, high-conversion interfaces, and digital stories that challenge the status quo."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Projects",
|
||||
href: "#portfolio",
|
||||
},
|
||||
{
|
||||
text: "Book Consultation",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/technology-excited-adult-man-orange-sweater-showing-digital-tablet-screen-staring-amazed-camer_1258-155404.jpg",
|
||||
imageAlt: "Abstract tech visualization",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-background-flowing-smoke-design_1048-15691.jpg",
|
||||
imageAlt: "Digital agency wave",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-low-poly-illustration-with-connected-lines-dots_1048-11941.jpg",
|
||||
imageAlt: "Futuristic grid",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139128.jpg",
|
||||
imageAlt: "Light streak aesthetic",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-geometric-shapes-background_23-2148772493.jpg",
|
||||
imageAlt: "Metallic 3d spheres",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-edits-photos-creative-media-agency_482257-4211.jpg",
|
||||
imageAlt: "Architectural wireframe",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="We Build Digital Experiences That Matter."
|
||||
description="Crafting bold brands, high-conversion interfaces, and digital stories that challenge the status quo."
|
||||
buttons={[{ text: "View Projects", href: "#portfolio" }, { text: "Book Consultation", href: "#contact" }]}
|
||||
carouselItems={[
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/technology-excited-adult-man-orange-sweater-showing-digital-tablet-screen-staring-amazed-camer_1258-155404.jpg", imageAlt: "Abstract tech visualization" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/abstract-background-flowing-smoke-design_1048-15691.jpg", imageAlt: "Digital agency wave" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/3d-low-poly-illustration-with-connected-lines-dots_1048-11941.jpg", imageAlt: "Futuristic grid" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139128.jpg", imageAlt: "Light streak aesthetic" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/abstract-geometric-shapes-background_23-2148772493.jpg", imageAlt: "Metallic 3d spheres" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-edits-photos-creative-media-agency_482257-4211.jpg", imageAlt: "Architectural wireframe" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our mission is simple: to turn your vision into an exceptional digital reality. We blend creative intuition with strategic precision to deliver products that don't just look good, but drive real results.",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/mockup-with-book-pencils_23-2147730273.jpg",
|
||||
alt: "Studio Interior",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{ type: "text", content: "Our mission is simple: to turn your vision into an exceptional digital reality. We blend creative intuition with strategic precision to deliver products that don't just look good, but drive real results." },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/mockup-with-book-pencils_23-2147730273.jpg", alt: "Studio Interior" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Web Design",
|
||||
author: "Strategy",
|
||||
description: "Responsive, performance-driven websites that captivate.",
|
||||
tags: [
|
||||
"UX",
|
||||
"UI",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-thinking-using-digital-tablet-shopping-online-pondering-ideas-looking-upper_1258-155411.jpg",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Branding",
|
||||
author: "Identity",
|
||||
description: "Strategic brand development and visual storytelling.",
|
||||
tags: [
|
||||
"Logo",
|
||||
"Identity",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-smoke-collection-black-background_1112-1693.jpg",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "UI/UX Design",
|
||||
author: "Product",
|
||||
description: "Crafting intuitive interactions for seamless user experience.",
|
||||
tags: [
|
||||
"UI",
|
||||
"UX",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-digital-art_23-2151197887.jpg",
|
||||
},
|
||||
]}
|
||||
title="Elevating Digital Potential"
|
||||
description="Comprehensive creative services for modern businesses."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "f1", title: "Web Design", author: "Strategy", description: "Responsive, performance-driven websites that captivate.", tags: ["UX", "UI"], imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-thinking-using-digital-tablet-shopping-online-pondering-ideas-looking-upper_1258-155411.jpg" },
|
||||
{ id: "f2", title: "Branding", author: "Identity", description: "Strategic brand development and visual storytelling.", tags: ["Logo", "Identity"], imageSrc: "http://img.b2bpic.net/free-photo/white-smoke-collection-black-background_1112-1693.jpg" },
|
||||
{ id: "f3", title: "UI/UX Design", author: "Product", description: "Crafting intuitive interactions for seamless user experience.", tags: ["UI", "UX"], imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-digital-art_23-2151197887.jpg" },
|
||||
]}
|
||||
title="Elevating Digital Potential"
|
||||
description="Comprehensive creative services for modern businesses."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="portfolio" data-section="portfolio">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "E-Com",
|
||||
name: "Fashion Store Redesign",
|
||||
price: "Featured",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-modern-art-background-with-flowing-waves-design_1048-18914.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Tech",
|
||||
name: "Fintech Platform",
|
||||
price: "Case Study",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-water_23-2149199598.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Health",
|
||||
name: "Wellness App",
|
||||
price: "Case Study",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/global-communication-background-business-network-design_53876-160250.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Art",
|
||||
name: "Portfolio Gallery",
|
||||
price: "Featured",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-fractal-geometric-figure-background-with-texture_1194-306737.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Edu",
|
||||
name: "Course Platform",
|
||||
price: "Case Study",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139233.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "SaaS",
|
||||
name: "Analytics Dashboard",
|
||||
price: "Featured",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-fantasy-sea-creature_23-2151626060.jpg",
|
||||
},
|
||||
]}
|
||||
title="Selected Works"
|
||||
description="Showcasing our recent partnerships and case studies."
|
||||
/>
|
||||
</div>
|
||||
<div id="portfolio" data-section="portfolio">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", brand: "E-Com", name: "Fashion Store Redesign", price: "Featured", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/abstract-modern-art-background-with-flowing-waves-design_1048-18914.jpg" },
|
||||
{ id: "p2", brand: "Tech", name: "Fintech Platform", price: "Case Study", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-water_23-2149199598.jpg" },
|
||||
{ id: "p3", brand: "Health", name: "Wellness App", price: "Case Study", rating: 5, reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/global-communication-background-business-network-design_53876-160250.jpg" },
|
||||
{ id: "p4", brand: "Art", name: "Portfolio Gallery", price: "Featured", rating: 5, reviewCount: "96", imageSrc: "http://img.b2bpic.net/free-photo/abstract-fractal-geometric-figure-background-with-texture_1194-306737.jpg" },
|
||||
{ id: "p5", brand: "Edu", name: "Course Platform", price: "Case Study", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139233.jpg" },
|
||||
{ id: "p6", brand: "SaaS", name: "Analytics Dashboard", price: "Featured", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fantasy-sea-creature_23-2151626060.jpg" },
|
||||
]}
|
||||
title="Selected Works"
|
||||
description="Showcasing our recent partnerships and case studies."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="process" data-section="process">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "01",
|
||||
title: "Discover",
|
||||
description: "Defining your goals and needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-fractal-geometric-figure-background-with-texture_1194-306721.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "02",
|
||||
title: "Strategize",
|
||||
description: "Architecting the perfect solution.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-man-developers-create-architect-project-use-blueprints-sketches-look-happily-after-successful-working-day-have-productive-cooperation_273609-50535.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "03",
|
||||
title: "Design",
|
||||
description: "Crafting the visual experience.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-abstract-black-white-background_23-2150913923.jpg",
|
||||
},
|
||||
]}
|
||||
title="The Agency Process"
|
||||
description="A refined workflow for high-impact results."
|
||||
/>
|
||||
</div>
|
||||
<div id="process" data-section="process">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "01", title: "Discover", description: "Defining your goals and needs.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-fractal-geometric-figure-background-with-texture_1194-306721.jpg" },
|
||||
{ id: "m2", value: "02", title: "Strategize", description: "Architecting the perfect solution.", imageSrc: "http://img.b2bpic.net/free-photo/woman-man-developers-create-architect-project-use-blueprints-sketches-look-happily-after-successful-working-day-have-productive-cooperation_273609-50535.jpg" },
|
||||
{ id: "m3", value: "03", title: "Design", description: "Crafting the visual experience.", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-abstract-black-white-background_23-2150913923.jpg" },
|
||||
]}
|
||||
title="The Agency Process"
|
||||
description="A refined workflow for high-impact results."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Exceptional Work",
|
||||
quote: "The team transformed our digital presence.",
|
||||
name: "Sarah J.",
|
||||
role: "CEO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-elegant-shaved-head-male-dressed-light-grey-suit_613910-11361.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Creative Leaders",
|
||||
quote: "They understand product better than anyone.",
|
||||
name: "Michael R.",
|
||||
role: "CTO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-young-female-professional-making-eye-contact-against-colored-background_662251-651.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "High Quality",
|
||||
quote: "Professional, fast, and highly innovative.",
|
||||
name: "Emily P.",
|
||||
role: "Marketing Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "True Partners",
|
||||
quote: "Beyond satisfied with the creative output.",
|
||||
name: "David W.",
|
||||
role: "Founder",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-outdoors_23-2150188348.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Game Changer",
|
||||
quote: "Our traffic doubled after the redesign.",
|
||||
name: "Linda M.",
|
||||
role: "COO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-lawyer-sitting-stairs_23-2148230777.jpg",
|
||||
},
|
||||
]}
|
||||
title="Client Partners"
|
||||
description="Trust is built through results."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", title: "Exceptional Work", quote: "The team transformed our digital presence.", name: "Sarah J.", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-elegant-shaved-head-male-dressed-light-grey-suit_613910-11361.jpg" },
|
||||
{ id: "t2", title: "Creative Leaders", quote: "They understand product better than anyone.", name: "Michael R.", role: "CTO", imageSrc: "http://img.b2bpic.net/free-photo/closeup-young-female-professional-making-eye-contact-against-colored-background_662251-651.jpg" },
|
||||
{ id: "t3", title: "High Quality", quote: "Professional, fast, and highly innovative.", name: "Emily P.", role: "Marketing Director", imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg" },
|
||||
{ id: "t4", title: "True Partners", quote: "Beyond satisfied with the creative output.", name: "David W.", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-outdoors_23-2150188348.jpg" },
|
||||
{ id: "t5", title: "Game Changer", quote: "Our traffic doubled after the redesign.", name: "Linda M.", role: "COO", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-lawyer-sitting-stairs_23-2148230777.jpg" },
|
||||
]}
|
||||
title="Client Partners"
|
||||
description="Trust is built through results."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Ready to Start?"
|
||||
description="Let's build something exceptional together. Tell us about your project."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elevated-view-diary-digital-tablet-pen-keyboard-coffee-cup-desk_23-2148061557.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
tag="Contact"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Ready to Start?"
|
||||
description="Let's build something exceptional together. Tell us about your project."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elevated-view-diary-digital-tablet-pen-keyboard-coffee-cup-desk_23-2148061557.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
tag="Contact"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Agency",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Work",
|
||||
items: [
|
||||
{
|
||||
label: "Portfolio",
|
||||
href: "#portfolio",
|
||||
},
|
||||
{
|
||||
label: "Process",
|
||||
href: "#process",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "LinkedIn",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Lux Creative."
|
||||
bottomRightText="All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Agency", items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#services" }] },
|
||||
{ title: "Work", items: [{ label: "Portfolio", href: "#portfolio" }, { label: "Process", href: "#process" }] },
|
||||
{ title: "Connect", items: [{ label: "Contact", href: "#contact" }, { label: "LinkedIn", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Lux Creative."
|
||||
bottomRightText="All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user