Update src/app/page.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
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 FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
@@ -36,6 +36,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Activities", id: "activities" },
|
{ name: "Activities", id: "activities" },
|
||||||
{ name: "Plans", id: "pricing" },
|
{ name: "Plans", id: "pricing" },
|
||||||
{ name: "Support", id: "faq" },
|
{ name: "Support", id: "faq" },
|
||||||
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
brandName="La Tehtaar"
|
brandName="La Tehtaar"
|
||||||
/>
|
/>
|
||||||
@@ -129,11 +130,17 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactSplitForm
|
||||||
background={{ variant: "sparkles-gradient" }}
|
title="Start Your Mobile App Journey"
|
||||||
text="Ready to start your Jordan adventure with La Tehtaar?"
|
description="Send us your website link and we'll help you convert it into a mobile app."
|
||||||
buttons={[{ text: "Contact Our Team" }]}
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
|
{ name: "link", type: "url", placeholder: "Your Website Link", required: true }
|
||||||
|
]}
|
||||||
|
textarea={{ name: "message", placeholder: "Tell us more about your project" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
buttonText="Submit Project"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user