Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-04-23 10:49:27 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
@@ -177,7 +177,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
@@ -191,49 +191,25 @@ export default function LandingPage() {
title="FAQ"
description="Common questions."
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-posing-with-hoodie-inside_23-2149359860.jpg"
imageAlt="Medium shot man posing with hoodie inside"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="NEWSLETTER"
description="Get exclusive drops in your inbox."
inputs={[
{
name: "name", type: "text", placeholder: "Name"},
{
name: "email", type: "email", placeholder: "Email Address"},
<ContactCTA
tag="CONTACT US"
title="STAY UPDATED"
description="Join our community and get access to exclusive drops."
buttons={[
{text: "Subscribe", href: "#"}
]}
imageSrc="http://img.b2bpic.net/free-photo/gray-stage-background-pedestal-podium-product-display-show-product-white-background-3d-rendering_56104-1496.jpg"
imageAlt="Gray stage background pedestal podium product display to show product on white background 3d rendering"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home", href: "/"},
{
label: "Shop", href: "#products"},
],
},
{
items: [
{
label: "Terms", href: "#"},
{
label: "Privacy", href: "#"},
],
},
]}
<FooterLogoReveal
logoText="EVERBLCK"
leftLink={{ text: "Home", href: "/" }}
rightLink={{ text: "Contact", href: "#contact" }}
/>
</div>
</ReactLenis>