Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 24fe8f0fa0 | |||
| e36ba1a66c | |||
| 16c65a0bad | |||
| 74fe4a5140 | |||
| 12f2c5e229 |
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||||
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';
|
||||||
@@ -140,35 +140,39 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqBase
|
<FaqSplitText
|
||||||
textboxLayout="split"
|
sideTitle="FAQ"
|
||||||
useInvertedBackground={false}
|
sideDescription="Learn how our AI-powered 3D platform accelerates your journey."
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "q1", title: "Is it suitable for beginners?", content: "Yes, the 3D-enhanced curriculum is designed for all levels." },
|
{ id: "q1", title: "Is it suitable for beginners?", content: "Yes, the 3D-enhanced curriculum is designed for all levels to build a strong foundation with AI guidance." },
|
||||||
{ id: "q2", title: "Can I cancel easily?", content: "Yes, subscription control is simple." },
|
{ id: "q2", title: "Can I cancel easily?", content: "Yes, subscription control is simple through your AI-personalized dashboard." },
|
||||||
]}
|
]}
|
||||||
title="Questions?"
|
|
||||||
description="We have answers."
|
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactSplitForm
|
||||||
useInvertedBackground={true}
|
title="Start Your AI Journey"
|
||||||
background={{ variant: "sparkles-gradient" }}
|
description="Get in touch for custom 3D training plans and AI insights."
|
||||||
text="Ready to start your 3D-enhanced AI journey? Join today."
|
inputs={[
|
||||||
buttons={[{ text: "Get Started", href: "#pricing" }]}
|
{ name: "name", type: "text", placeholder: "Full Name" },
|
||||||
|
{ name: "email", type: "email", placeholder: "Email Address" }
|
||||||
|
]}
|
||||||
|
imageSrc="https://img.b2bpic.net/free-photo/3d-ai-contact-design.jpg"
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
columns={[
|
|
||||||
{ items: [{ label: "Home", href: "#" }, { label: "Features", href: "#features" }] },
|
|
||||||
{ items: [{ label: "Pricing", href: "#pricing" }, { label: "FAQ", href: "#faq" }] },
|
|
||||||
]}
|
|
||||||
logoText="Talkpik"
|
logoText="Talkpik"
|
||||||
|
columns={[
|
||||||
|
{ title: "Product", items: [{ label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }] },
|
||||||
|
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] },
|
||||||
|
{ title: "Resources", items: [{ label: "FAQ", href: "#faq" }, { label: "AI 3D Guide", href: "#" }] },
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user