2 Commits

Author SHA1 Message Date
45c031905b Update src/app/page.tsx 2026-05-06 19:20:02 +00:00
6f59d8d730 Merge version_1 into main
Merge version_1 into main
2026-05-06 19:10:37 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -161,11 +161,12 @@ export default function LandingPage() {
"Vogue", "Elle", "Harper's Bazaar", "GQ", "Dazed", "i-D", "Numero"]} "Vogue", "Elle", "Harper's Bazaar", "GQ", "Dazed", "i-D", "Numero"]}
title="As Seen In" title="As Seen In"
description="Recognized by industry leaders in fashion." description="Recognized by industry leaders in fashion."
showCard={true}
/> />
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqDouble <FaqSplitMedia
textboxLayout="split" textboxLayout="split"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
@@ -183,39 +184,24 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{ variant: "sparkles-gradient" }}
variant: "sparkles-gradient"}} title="Get In Touch"
text="Join our newsletter for exclusive updates." description="Questions? Suggestions? We'd love to hear from you."
tag="Contact Us"
buttons={[ buttons={[
{ {
text: "Subscribe Now", href: "#"}, text: "Email Support", href: "mailto:support@emode.com"},
]} ]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterLogoReveal
logoText="E-Mode" logoText="E-Mode"
columns={[ leftLink={{ text: "Privacy Policy", href: "#" }}
{ rightLink={{ text: "Terms of Service", href: "#" }}
title: "Shop", items: [
{
label: "All", href: "#products"},
{
label: "New", href: "#"},
],
},
{
title: "Support", items: [
{
label: "FAQ", href: "#faq"},
{
label: "Contact", href: "#contact"},
],
},
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>