|
|
|
|
@@ -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 FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
|
|
|
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
|
|
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
|
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
|
|
|
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
|
|
|
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
|
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
|
@@ -21,11 +21,11 @@ export default function LandingPage() {
|
|
|
|
|
borderRadius="pill"
|
|
|
|
|
contentWidth="medium"
|
|
|
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
|
|
|
background="noise"
|
|
|
|
|
cardStyle="outline"
|
|
|
|
|
primaryButtonStyle="diagonal-gradient"
|
|
|
|
|
background="fluid"
|
|
|
|
|
cardStyle="glass-depth"
|
|
|
|
|
primaryButtonStyle="primary-glow"
|
|
|
|
|
secondaryButtonStyle="glass"
|
|
|
|
|
headingFontWeight="medium"
|
|
|
|
|
headingFontWeight="semibold"
|
|
|
|
|
>
|
|
|
|
|
<ReactLenis root>
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
@@ -151,25 +151,27 @@ export default function LandingPage() {
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactText
|
|
|
|
|
<ContactCenter
|
|
|
|
|
tag="Contact"
|
|
|
|
|
title="Ready to transform your productivity?"
|
|
|
|
|
description="Let's talk about your automation needs."
|
|
|
|
|
background={{ variant: "radial-gradient" }}
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
background={{ variant: "animated-grid" }}
|
|
|
|
|
text="Ready to transform your productivity? Let's talk."
|
|
|
|
|
buttons={[{ text: "Contact Us" }]}
|
|
|
|
|
className="bg-black/5 backdrop-blur-md border border-white/10 rounded-2xl p-8"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterSimple
|
|
|
|
|
<FooterBaseCard
|
|
|
|
|
logoText="AutoFlow"
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Platform", items: [{ label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }] },
|
|
|
|
|
{ title: "Company", items: [{ label: "Support", href: "#faq" }, { label: "Terms", href: "#" }] }
|
|
|
|
|
]}
|
|
|
|
|
bottomLeftText="© 2024 AutoFlow Inc."
|
|
|
|
|
bottomRightText="All rights reserved."
|
|
|
|
|
className="bg-black/5 backdrop-blur-md border-t border-white/10"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ReactLenis>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|