Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-05-01 07:20:01 +00:00
2 changed files with 27 additions and 20 deletions

View File

@@ -12,7 +12,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, CheckCircle, Zap } from "lucide-react";
import { Award, CheckCircle, Zap, ShieldCheck, MapPin, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -34,7 +34,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Services", id: "features" },
{ name: "Contact", id: "contact" },
]}
brandName="Porsche Center Muscat"
@@ -138,11 +138,11 @@ export default function LandingPage() {
useInvertedBackground={true}
metrics={[
{ id: "m1", icon: Award, title: "Service Years", value: "20+" },
{ id: "m2", icon: CheckCircle, title: "Satisfied Clients", value: "1500+" },
{ id: "m3", icon: Zap, title: "Technical Experts", value: "30+" }
{ id: "m2", icon: ShieldCheck, title: "Certified Technicians", value: "50+" },
{ id: "m3", icon: Zap, title: "Performance Projects", value: "2,000+" }
]}
title="Our Impact"
description="Driven by data, powered by passion for excellence."
title="Driven by Excellence"
description="Two decades of commitment to Porsche performance in Oman."
/>
</div>
@@ -150,9 +150,9 @@ export default function LandingPage() {
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
names={["Porsche Global", "Oman Automotive Association", "High-Performance Logistics", "Global Precision Parts", "Elite Maintenance Alliance", "TechnoMotors Group", "Advanced Dynamics"]}
title="A Trusted Network"
description="Partners who share our commitment to performance."
names={["Porsche Club Oman", "Muscat Performance Hub", "Oman Auto Alliance", "Prestige Engineering Group", "Gulf Dynamics Automotive"]}
title="Trusted by Industry Leaders"
description="Collaborating with top-tier automotive organizations."
/>
</div>
@@ -161,8 +161,8 @@ export default function LandingPage() {
tag="Contact Us"
useInvertedBackground={true}
background={{ variant: "plain" }}
title="Visit Our Showroom"
description="113 Sultan Qaboos Street, Muscat. Book your service or visit us for a consultation."
title="Connect with our Experts"
description="Our dedicated Porsche team in Muscat is ready to assist with your service requirements and enquiries."
imageSrc="http://img.b2bpic.net/free-photo/stylish-lady-sitting-car-with-opened-door-fashion-girl-driving-car-suit-posh-girl-sportcar_574295-8.jpg"
mediaAnimation="slide-up"
/>
@@ -173,23 +173,30 @@ export default function LandingPage() {
logoText="Porsche Center Muscat"
columns={[
{
title: "Company", items: [
title: "Center", items: [
{ label: "About Us", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Contact", href: "#contact" },
{ label: "Our Services", href: "#features" },
{ label: "Performance", href: "#pricing" },
],
},
{
title: "Experience", items: [
{ label: "Events", href: "#" },
{ label: "News", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "#" },
{ label: "Contact Support", href: "#contact" },
{ label: "Privacy Policy", href: "#" },
{ label: "Booking", href: "#contact" },
{ label: "Legal", href: "#" },
],
},
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-montserrat), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-mulish), sans-serif;
font-family: var(--font-montserrat), sans-serif;
}