1 Commits

Author SHA1 Message Date
4ffad955ef Update src/app/page.tsx 2026-01-08 11:17:24 +00:00
3 changed files with 13 additions and 13 deletions

View File

@@ -5,9 +5,9 @@
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #ffffff; --background: #ffffff;
--card: #808080; --card: #fcfcfc;
--foreground: #0f0003e6; --foreground: #0f0003e6;
--primary-cta: #1cde5d; --primary-cta: #c1121f;
--secondary-cta: #f9f9f9; --secondary-cta: #f9f9f9;
--accent: #e2e2e2; --accent: #e2e2e2;
--background-accent: #c4c4c4; --background-accent: #c4c4c4;

View File

@@ -9,7 +9,7 @@ const plusJakartaSans = Plus_Jakarta_Sans({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Porsche 911 | Drive the Legend", description: "Discover the iconic Porsche 911 sports car. 60+ years of performance, heritage, and engineering excellence. Explore models, specifications, and ownership options.", keywords: "Porsche 911, sports car, luxury automobile, performance vehicle, turbo, carrera, gt3, driving experience", metadataBase: new URL("https://porsche911.example.com"), title: "Porsche 911 | The Legend Lives", description: "Discover the iconic Porsche 911 sports car. 60+ years of performance, heritage, and engineering excellence. Explore models, specifications, and ownership options.", keywords: "Porsche 911, sports car, luxury automobile, performance vehicle, turbo, carrera, gt3, driving experience", metadataBase: new URL("https://porsche911.example.com"),
alternates: { alternates: {
canonical: "https://porsche911.example.com" canonical: "https://porsche911.example.com"
}, },
@@ -1266,4 +1266,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -56,7 +56,7 @@ export default function LandingPage() {
title="Drive the Legend" title="Drive the Legend"
buttons={[ buttons={[
{ {
text: "Explore the 911 today", href: "models" text: "Explore the 911", href: "models"
}, },
{ {
text: "Experience Now", href: "contact" text: "Experience Now", href: "contact"
@@ -127,10 +127,10 @@ export default function LandingPage() {
title: "Precision Handling", description: "Race-proven suspension and world-class brakes deliver unmatched control. Feel the road like never before with responsive, razor-sharp handling on any surface.", imageSrc: "/placeholders/placeholder1.webp" title: "Precision Handling", description: "Race-proven suspension and world-class brakes deliver unmatched control. Feel the road like never before with responsive, razor-sharp handling on any surface.", imageSrc: "/placeholders/placeholder1.webp"
} }
]} ]}
animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="invertCard" useInvertedBackground="invertCard"
usePrimaryButtonImage={false} usePrimaryButtonImage={false}
animationType="slide-up"
ariaLabel="Porsche 911 performance features" ariaLabel="Porsche 911 performance features"
/> />
</div> </div>
@@ -171,8 +171,8 @@ export default function LandingPage() {
tagIcon={CreditCard} tagIcon={CreditCard}
plans={[ plans={[
{ {
id: "carrera", subtitle: "911 Carrera", badge: "Most Popular", badgeIcon: Star, id: "carrera", badge: "Most Popular", badgeIcon: Star,
price: "$120,000", buttons: [ price: "$120,000", subtitle: "The quintessential 911 experience", buttons: [
{ {
text: "Configure", href: "contact" text: "Configure", href: "contact"
} }
@@ -182,8 +182,8 @@ export default function LandingPage() {
] ]
}, },
{ {
id: "turbo", subtitle: "911 Turbo", badge: "Maximum Power", badgeIcon: Zap, id: "turbo", badge: "Maximum Power", badgeIcon: Zap,
price: "$195,000", buttons: [ price: "$195,000", subtitle: "Ultimate performance and prestige", buttons: [
{ {
text: "Configure", href: "contact" text: "Configure", href: "contact"
} }
@@ -193,8 +193,8 @@ export default function LandingPage() {
] ]
}, },
{ {
id: "gt3", subtitle: "911 GT3", badge: "Track Certified", badgeIcon: Trophy, id: "gt3", badge: "Track Certified", badgeIcon: Trophy,
price: "$215,000", buttons: [ price: "$215,000", subtitle: "Racing DNA for the road", buttons: [
{ {
text: "Configure", href: "contact" text: "Configure", href: "contact"
} }
@@ -341,4 +341,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }