Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-15 23:07:14 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
@@ -159,54 +159,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
<ContactText
text="Ready to digitize your library? Contact our office team for a consultation."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
title="Connect with Us"
description="Ready to digitize your library? Contact our office team for a consultation."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email", type: "email", placeholder: "Email Address", required: true,
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=jjgjvy"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Services", href: "#services"},
{
label: "Solutions", href: "#solutions"},
],
},
{
items: [
{
label: "About", href: "#about"},
{
label: "Contact", href: "#contact"},
],
},
{
items: [
{
label: "Terms", href: "#"},
{
label: "Privacy", href: "#"},
],
},
]}
<FooterLogoReveal
logoText="Off Post"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}