16 Commits

Author SHA1 Message Date
93959050b4 Merge version_11 into main
Merge version_11 into main
2025-12-25 14:10:30 +00:00
09d2e7da56 Update src/app/globals.css 2025-12-25 14:10:25 +00:00
876fcb93db Merge version_10 into main
Merge version_10 into main
2025-12-25 13:19:18 +00:00
e075a533c1 Update src/app/globals.css 2025-12-25 13:19:14 +00:00
034f37f8e0 Merge version_9 into main
Merge version_9 into main
2025-12-24 14:28:18 +00:00
1b85caab02 Update src/app/page.tsx 2025-12-24 14:28:13 +00:00
1873474e9d Merge version_8 into main
Merge version_8 into main
2025-12-24 14:00:14 +00:00
15e346cff4 Update src/app/page.tsx 2025-12-24 14:00:09 +00:00
fe972fd7ff Merge version_7 into main
Merge version_7 into main
2025-12-24 13:45:04 +00:00
e63c5e3097 Merge version_7 into main
Merge version_7 into main
2025-12-24 13:43:03 +00:00
6667492f64 Merge version_6 into main
Merge version_6 into main
2025-12-24 13:35:11 +00:00
dbf2d55c23 Merge version_5 into main
Merge version_5 into main
2025-12-24 13:31:33 +00:00
5eb168f962 Merge version_4 into main
Merge version_4 into main
2025-12-24 13:28:30 +00:00
e45a82cc57 Merge version_3 into main
Merge version_3 into main
2025-12-23 16:40:39 +00:00
cdedf6baa9 Merge version_3 into main
Merge version_3 into main
2025-12-23 16:38:42 +00:00
afda9e624b Merge version_2 into main
Merge version_2 into main
2025-12-23 16:36:03 +00:00
2 changed files with 38 additions and 13 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #fffffae6;
--primary-cta: #facc15;
--secondary-cta: #1a1a1a;
--accent: #737373;
--background-accent: #737373;
--background: #f7fafd;
--card: #eff6fc;
--foreground: #1a2433;
--primary-cta: #2563eb;
--secondary-cta: #ffffff;
--accent: #f8c093;
--background-accent: #f5b78b;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -8,7 +8,7 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
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 { Youtube, Twitter, Linkedin, Instagram } from "lucide-react";
@@ -87,7 +87,7 @@ export default function LandingPage() {
<div id="feature" data-section="feature">
<FeatureCardOne
title="Premium Features"
title=""
description="Engineered to perfection. The A10 combines advanced technology with timeless elegance, delivering innovation at every turn."
features={[
{
@@ -162,6 +162,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
cardRatingClassName="text-red-500"
/>
</div>
@@ -241,12 +242,35 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Newsletter"
<ContactSplitForm
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"
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>
@@ -290,6 +314,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
cardRatingClassName="text-red-500"
/>
</div>