Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e8cd71e1a4 | |||
| 9b4f9941b0 | |||
| 003b5e3cea | |||
| 152e811e87 | |||
| 4c2417c9c9 | |||
| 6ca985a277 | |||
| b6520529dc | |||
| d723e4bd84 |
@@ -146,17 +146,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "911 Turbo S", price: "$200,000+", imageSrc: "http://img.b2bpic.net/free-photo/headlight-lamp-car_1339-3081.jpg", imageAlt: "porsche 911 turbo s"},
|
||||
id: "p1", name: "911 Turbo S", price: "$200,000+", imageSrc: "http://img.b2bpic.net/free-photo/headlight-lamp-car_1339-3081.jpg", imageAlt: "porsche 911 turbo s", onProductClick: () => { window.location.href = "#contact"; }},
|
||||
{
|
||||
id: "p2", name: "Cayenne Turbo GT", price: "$180,000+", imageSrc: "http://img.b2bpic.net/free-photo/high-speed-test-driving-white-sport-car_114579-4051.jpg", imageAlt: "porsche cayenne turbo"},
|
||||
id: "p2", name: "Cayenne Turbo GT", price: "$180,000+", imageSrc: "http://img.b2bpic.net/free-photo/high-speed-test-driving-white-sport-car_114579-4051.jpg", imageAlt: "porsche cayenne turbo", onProductClick: () => { window.location.href = "#contact"; }},
|
||||
{
|
||||
id: "p3", name: "718 Boxster Spyder", price: "$110,000+", imageSrc: "http://img.b2bpic.net/free-photo/silver-sport-coupe-driving-highway_114579-4002.jpg", imageAlt: "porsche boxster side"},
|
||||
id: "p3", name: "718 Boxster Spyder", price: "$110,000+", imageSrc: "http://img.b2bpic.net/free-photo/silver-sport-coupe-driving-highway_114579-4002.jpg", imageAlt: "porsche boxster side", onProductClick: () => { window.location.href = "#contact"; }},
|
||||
{
|
||||
id: "p4", name: "Macan EV", price: "$80,000+", imageSrc: "http://img.b2bpic.net/free-photo/woman-charging-electro-car-electric-gas-station_1303-15084.jpg", imageAlt: "porsche macan front"},
|
||||
id: "p4", name: "Macan EV", price: "$80,000+", imageSrc: "http://img.b2bpic.net/free-photo/woman-charging-electro-car-electric-gas-station_1303-15084.jpg", imageAlt: "porsche macan front", onProductClick: () => { window.location.href = "#contact"; }},
|
||||
{
|
||||
id: "p5", name: "Panamera Hybrid", price: "$120,000+", imageSrc: "http://img.b2bpic.net/free-photo/back-view-silver-sport-sedan-with-red-lights_114579-4050.jpg", imageAlt: "porsche panamera elegant"},
|
||||
id: "p5", name: "Panamera Hybrid", price: "$120,000+", imageSrc: "http://img.b2bpic.net/free-photo/back-view-silver-sport-sedan-with-red-lights_114579-4050.jpg", imageAlt: "porsche panamera elegant", onProductClick: () => { window.location.href = "#contact"; }},
|
||||
{
|
||||
id: "p6", name: "911 GT3 RS", price: "$250,000+", imageSrc: "http://img.b2bpic.net/free-photo/drivers-hands-steering-wheel-car-night-night-driving_169016-51113.jpg", imageAlt: "porsche 911 gt3 racing"},
|
||||
id: "p6", name: "911 GT3 RS", price: "$250,000+", imageSrc: "http://img.b2bpic.net/free-photo/drivers-hands-steering-wheel-car-night-night-driving_169016-51113.jpg", imageAlt: "porsche 911 gt3 racing", onProductClick: () => { window.location.href = "#contact"; }},
|
||||
]}
|
||||
title="Our Vehicles"
|
||||
description="Choose your perfect driving experience."
|
||||
@@ -230,11 +230,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1", title: "Warranty Info?", content: "Comprehensive 4-year coverage."},
|
||||
id: "f1", title: "Warranty Info?", content: "Our 4-year/50,000-mile comprehensive warranty covers all major components for your peace of mind."},
|
||||
{
|
||||
id: "f2", title: "Service Locations?", content: "Global network of dealers."},
|
||||
id: "f2", title: "Service Locations?", content: "We operate an extensive global network of certified Porsche service centers equipped with factory-trained technicians to ensure your vehicle receives the highest standard of care wherever you are."},
|
||||
{
|
||||
id: "f3", title: "Trade-in?", content: "Competitive appraisals available."},
|
||||
id: "f3", title: "Trade-in?", content: "Take advantage of our transparent, competitive valuation process. We provide expert appraisals that guarantee the best market value for your current vehicle toward your next Porsche."},
|
||||
]}
|
||||
sideTitle="Questions?"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -282,4 +282,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user