Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b0f48a6122 | |||
| 92c84997d7 | |||
| b99fee5611 |
@@ -3,10 +3,10 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
@@ -257,37 +257,29 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Get in Touch with CarsW6"
|
text="Get in Touch with CarsW6\nHave questions, need assistance, or ready to schedule a test drive? Contact our team today!"
|
||||||
description="Have questions, need assistance, or ready to schedule a test drive? Contact our team today!"
|
buttons={[
|
||||||
inputs={[
|
|
||||||
{
|
{
|
||||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
text: "Send Message"
|
||||||
},
|
}
|
||||||
{
|
|
||||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "phone", type: "tel", placeholder: "Phone Number (Optional)"},
|
|
||||||
]}
|
]}
|
||||||
textarea={{
|
background={{
|
||||||
name: "message", placeholder: "How can we help you today?", rows: 4,
|
variant: "radial-gradient"
|
||||||
required: true,
|
|
||||||
}}
|
}}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg"
|
animationType="entrance-slide"
|
||||||
imageAlt="Modern car showroom exterior"
|
|
||||||
mediaAnimation="opacity"
|
|
||||||
mediaPosition="right"
|
|
||||||
buttonText="Send Message"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterMedia
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/dark-luxurious-sports-car-blurred-city-background_1409-5483.jpg"
|
||||||
|
imageAlt="Luxurious car in blurred city background"
|
||||||
|
logoText="CarsW6"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
title: "Company", items: [
|
||||||
{
|
{
|
||||||
label: "Home", href: "#home"},
|
label: "Home", href: "#home"},
|
||||||
{
|
{
|
||||||
@@ -295,11 +287,11 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
label: "Features", href: "#features"},
|
label: "Features", href: "#features"},
|
||||||
{
|
{
|
||||||
label: "Inventory", href: "#inventory"},
|
label: "Inventory", href: "#inventory"}
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
title: "Services", items: [
|
||||||
{
|
{
|
||||||
label: "Financing", href: "#financing"},
|
label: "Financing", href: "#financing"},
|
||||||
{
|
{
|
||||||
@@ -307,21 +299,21 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
label: "FAQ", href: "#faq"},
|
label: "FAQ", href: "#faq"},
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact", href: "#contact"}
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
title: "Legal", items: [
|
||||||
{
|
{
|
||||||
label: "Privacy Policy", href: "#"},
|
label: "Privacy Policy", href: "#"},
|
||||||
{
|
{
|
||||||
label: "Terms of Service", href: "#"},
|
label: "Terms of Service", href: "#"},
|
||||||
{
|
{
|
||||||
label: "Cookie Policy", href: "#"},
|
label: "Cookie Policy", href: "#"}
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
logoText="CarsW6"
|
copyrightText="© 2025 | CarsW6"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user