Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-04-05 16:28:38 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -125,22 +125,39 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "animated-grid" }}
tag="Get Started"
title="Start Winning More Grants"
description="Join thousands of organizations using AI to secure funding. Schedule a demo or start your free trial today."
<ContactSplitForm
title="Get in Touch"
description="Have questions about our grant writing tools or need specialized support? Fill out the form below."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
]}
textarea={{ name: "inquiry", placeholder: "Your grant writing inquiry", rows: 4 }}
buttonText="Send Inquiry"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Features", href: "#features" }, { label: "Benefits", href: "#about" }, { label: "Pricing", href: "#faq" }] },
{ items: [{ label: "About Us", href: "#about" }, { label: "Careers", href: "#contact" }, { label: "Privacy", href: "#" }] },
]}
<FooterMedia
imageSrc="https://images.unsplash.com/photo-1554734867-03c091973b77?q=80&w=600"
logoText="GrantWriter AI"
columns={[
{
title: "Resources", items: [
{ label: "Grant Writing Tips", href: "#" },
{ label: "Funding Opportunities", href: "#" },
{ label: "Proposal Templates", href: "#" }
]
},
{
title: "Company", items: [
{ label: "Features", href: "#features" },
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" }
]
}
]}
copyrightText="© 2025 GrantWriter AI. All rights reserved."
/>
</div>
</ReactLenis>