17 Commits

Author SHA1 Message Date
93890bbec2 Merge version_5 into main
Merge version_5 into main
2026-01-08 13:20:35 +00:00
8895725d63 Update src/app/globals.css 2026-01-08 13:20:30 +00:00
3038ca04da Merge version_4 into main
Merge version_4 into main
2026-01-08 12:34:38 +00:00
726814f998 Update src/app/globals.css 2026-01-08 12:34:33 +00:00
0d0dbde63d Merge version_3 into main
Merge version_3 into main
2026-01-08 11:38:29 +00:00
27b94061c0 Update src/app/page.tsx 2026-01-08 11:38:24 +00:00
c602138676 Update src/app/layout.tsx 2026-01-08 11:38:23 +00:00
e8e44240bc Update src/app/globals.css 2026-01-08 11:38:22 +00:00
00e2a522c9 Merge version_2 into main
Merge version_2 into main
2026-01-08 11:22:55 +00:00
72891d1392 Update src/app/page.tsx 2026-01-08 11:22:50 +00:00
1a1f84b4f4 Merge version_2 into main
Merge version_2 into main
2026-01-08 11:20:37 +00:00
e58dd3c4bb Update src/app/page.tsx 2026-01-08 11:20:32 +00:00
a0b2c6dbc3 Merge version_2 into main
Merge version_2 into main
2026-01-08 11:18:02 +00:00
01e2b1bf45 Update src/app/page.tsx 2026-01-08 11:17:58 +00:00
9935cca4a1 Update src/app/layout.tsx 2026-01-08 11:17:57 +00:00
21608cac68 Merge version_1 into main
Merge version_1 into main
2026-01-08 11:17:29 +00:00
ad96be9a25 Merge version_1 into main
Merge version_1 into main
2026-01-08 11:15:16 +00:00
3 changed files with 18 additions and 17 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #ffffff;
--card: #fcfcfc;
--foreground: #0f0003e6;
--primary-cta: #c1121f;
--secondary-cta: #f9f9f9;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background: #f8fcff;
--card: #ffffff;
--foreground: #00101f;
--primary-cta: #409fff;
--secondary-cta: #ffffff;
--accent: #c7e2fc;
--background-accent: #9bcfff;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -9,7 +9,7 @@ const plusJakartaSans = Plus_Jakarta_Sans({
});
export const metadata: Metadata = {
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"),
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"),
alternates: {
canonical: "https://porsche911.example.com"
},
@@ -1266,4 +1266,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -56,7 +56,7 @@ export default function LandingPage() {
title="Drive the Legend"
buttons={[
{
text: "Explore the 911", href: "models"
text: "Explore the 911 today", href: "models"
},
{
text: "Experience Now", href: "contact"
@@ -127,6 +127,7 @@ 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"
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="invertCard"
usePrimaryButtonImage={false}
@@ -171,8 +172,8 @@ export default function LandingPage() {
tagIcon={CreditCard}
plans={[
{
id: "carrera", badge: "Most Popular", badgeIcon: Star,
price: "$120,000", subtitle: "The quintessential 911 experience", buttons: [
id: "carrera", subtitle: "911 Carrera", badge: "Most Popular", badgeIcon: Star,
price: "$120,000", buttons: [
{
text: "Configure", href: "contact"
}
@@ -182,8 +183,8 @@ export default function LandingPage() {
]
},
{
id: "turbo", badge: "Maximum Power", badgeIcon: Zap,
price: "$195,000", subtitle: "Ultimate performance and prestige", buttons: [
id: "turbo", subtitle: "911 Turbo", badge: "Maximum Power", badgeIcon: Zap,
price: "$195,000", buttons: [
{
text: "Configure", href: "contact"
}
@@ -193,8 +194,8 @@ export default function LandingPage() {
]
},
{
id: "gt3", badge: "Track Certified", badgeIcon: Trophy,
price: "$215,000", subtitle: "Racing DNA for the road", buttons: [
id: "gt3", subtitle: "911 GT3", badge: "Track Certified", badgeIcon: Trophy,
price: "$215,000", buttons: [
{
text: "Configure", href: "contact"
}
@@ -341,4 +342,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}