Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b85caab02 | |||
| 15e346cff4 | |||
| cd9e3a4c1e | |||
| 4fddb4010b | |||
| ab1b596b51 |
@@ -2,14 +2,14 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
||||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import MediaSplitTabsAbout from "@/components/sections/about/MediaSplitTabsAbout";
|
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
|
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
|
||||||
import TestimonialCardNine from "@/components/sections/testimonial/TestimonialCardNine";
|
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial";
|
import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
|
||||||
import { Youtube, Twitter, Linkedin, Instagram } from "lucide-react";
|
import { Youtube, Twitter, Linkedin, Instagram } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -87,7 +87,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="feature" data-section="feature">
|
<div id="feature" data-section="feature">
|
||||||
<FeatureCardOne
|
<FeatureCardOne
|
||||||
title="Premium Features"
|
title=""
|
||||||
description="Engineered to perfection. The A10 combines advanced technology with timeless elegance, delivering innovation at every turn."
|
description="Engineered to perfection. The A10 combines advanced technology with timeless elegance, delivering innovation at every turn."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
@@ -162,6 +162,7 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
|
cardRatingClassName="text-red-500"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -241,12 +242,35 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
tag="Newsletter"
|
|
||||||
title="Ready to Experience the A10?"
|
title="Ready to Experience the A10?"
|
||||||
description="Stay updated with the latest AUDI A10 news, exclusive offers, and special events."
|
description="Get in touch with us to schedule a test drive or learn more about the AUDI A10. We'd love to hear from you."
|
||||||
|
inputs={[
|
||||||
|
{
|
||||||
|
name: "name",
|
||||||
|
type: "text",
|
||||||
|
placeholder: "Your Name",
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "email",
|
||||||
|
type: "email",
|
||||||
|
placeholder: "Your Email",
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
textarea={{
|
||||||
|
name: "message",
|
||||||
|
placeholder: "Tell us about your interest in the A10...",
|
||||||
|
rows: 5,
|
||||||
|
required: true
|
||||||
|
}}
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
onSubmit={(email) => console.log("Email submitted:", email)}
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766507382209-vmocpnfc.jpg"
|
||||||
|
imageAlt="AUDI A10"
|
||||||
|
mediaPosition="right"
|
||||||
|
buttonText="Send Message"
|
||||||
|
onSubmit={(data) => console.log("Form submitted:", data)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -290,6 +314,7 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
|
cardRatingClassName="text-red-500"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user