Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a3d929e30 | |||
| f4871b4ada | |||
| ebf0d78839 | |||
| 1537e4ad4a | |||
| eaa258e98e |
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
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';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
import { MessageSquare, TrendingUp, Users } from "lucide-react";
|
import { MessageSquare, TrendingUp, Users } from "lucide-react";
|
||||||
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -167,41 +167,40 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
title="Start Your Smart Farm Today"
|
||||||
background={{
|
description="Sign up to receive early access to our new marketing insights feature."
|
||||||
variant: "sparkles-gradient"}}
|
inputs={[
|
||||||
title="Start Your Smart Farm Today"
|
{ name: "name", type: "text", placeholder: "Full Name" },
|
||||||
description="Sign up to receive early access to our new marketing insights feature."
|
{ name: "email", type: "email", placeholder: "Your Email" }
|
||||||
tag="Join Waitlist"
|
]}
|
||||||
/>
|
textarea={{ name: "message", placeholder: "How can we help you?" }}
|
||||||
|
buttonText="Submit Request"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterSimple
|
||||||
logoText="FarmWise AI"
|
columns={[
|
||||||
columns={[
|
{
|
||||||
{
|
title: "Product", items: [
|
||||||
title: "Product", items: [
|
{ label: "Diagnostics", href: "#" },
|
||||||
{
|
{ label: "Weather", href: "#" }
|
||||||
label: "Diagnostics", href: "#"},
|
]
|
||||||
{
|
},
|
||||||
label: "Weather", href: "#"},
|
{
|
||||||
],
|
title: "Company", items: [
|
||||||
},
|
{ label: "About", href: "#" },
|
||||||
{
|
{ label: "Support", href: "#" }
|
||||||
title: "Company", items: [
|
]
|
||||||
{
|
}
|
||||||
label: "About", href: "#"},
|
]}
|
||||||
{
|
bottomLeftText="© 2024 FarmWise AI."
|
||||||
label: "Support", href: "#"},
|
bottomRightText="All rights reserved."
|
||||||
],
|
/>
|
||||||
},
|
|
||||||
]}
|
|
||||||
copyrightText="© 2024 FarmWise AI. All rights reserved."
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user