Update src/app/page.tsx

This commit is contained in:
2026-03-10 18:42:20 +00:00
parent 2f16dba039
commit 9a381e8fc1

View File

@@ -6,7 +6,6 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
@@ -15,7 +14,6 @@ import { Award, Sparkles, Wrench, Shield, CheckCircle, Zap, Gauge } from "lucide
const navItems = [
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
];
@@ -44,18 +42,18 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboard
title="Auto Lux"
description="Precision Automotive Care"
background={{ variant: "plain" }}
tag="Luxury Auto Service"
title="Transform Your Vehicle Into a Masterpiece"
description="Premium automotive restoration and maintenance for luxury vehicles. Expert technicians, state-of-the-art facilities, and uncompromising attention to detail."
background={{ variant: "gradient-bars" }}
tag="Professional Luxury Auto Service"
tagIcon={Sparkles}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22301.jpg"
imageAlt="Luxury car in professional automotive facility"
mediaAnimation="slide-up"
buttons={[
{ text: "View Services", href: "services" },
{ text: "Schedule Appointment", href: "contact" }
{ text: "Explore Services", href: "services" },
{ text: "Book Appointment", href: "contact" }
]}
buttonAnimation="slide-up"
/>
@@ -142,34 +140,6 @@ export default function LandingPage() {
/>
</div>
<div id="portfolio" data-section="portfolio">
<ProductCardThree
title="Work Showcase"
description="Gallery of our finest automotive restorations and service projects"
tag="Portfolio"
tagIcon={Sparkles}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", name: "Luxury Sports Car Restoration", price: "Premium", imageSrc: "http://img.b2bpic.net/free-vector/business-flyer-template_23-2147996475.jpg", imageAlt: "Luxury sports car restoration project"
},
{
id: "2", name: "Executive Sedan Detail & Service", price: "Premium", imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-with-image_23-2148378327.jpg", imageAlt: "Executive sedan detailing project"
},
{
id: "3", name: "Performance Engine Optimization", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/car-dealership_23-2148130130.jpg", imageAlt: "Performance engine tuning project"
},
{
id: "4", name: "Luxury SUV Maintenance Package", price: "Premium", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-driving-school-brochure-template_23-2149278825.jpg", imageAlt: "Luxury SUV service project"
}
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
title="Meet Our Expert Team"
@@ -233,7 +203,6 @@ export default function LandingPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Team", href: "#team" },
{ label: "Portfolio", href: "#portfolio" },
{ label: "Contact", href: "#contact" }
]
},