Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-05-18 06:40:34 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
@@ -186,47 +186,35 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={true}
background={{
variant: "gradient-bars"}}
text="Ready to scale your brand presence with powerful video content? Let's discuss your next project."
buttons={[
{
text: "Contact Us Now", href: "mailto:hello@lensgrow.studio"},
]}
<ContactCenter
tag="Let's Connect"
title="Ready to scale your brand?"
description="Book a strategy session with our creative production team today."
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBaseCard
logoText="LensGrow Studios"
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Services", href: "#features"},
{
label: "Work", href: "#portfolio"},
{ label: "About", href: "#about" },
{ label: "Work", href: "#portfolio" },
],
},
{
title: "Contact", items: [
{
label: "hello@lensgrow.studio", href: "mailto:hello@lensgrow.studio"},
{
label: "Twitter", href: "#"},
{
label: "LinkedIn", href: "#"},
{ label: "hello@lensgrow.studio", href: "mailto:hello@lensgrow.studio" },
{ label: "Twitter", href: "#" },
],
},
]}
bottomLeftText="© 2024 LensGrow Studios"
bottomRightText="All rights reserved."
copyrightText="© 2025 LensGrow Studios"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}