diff --git a/src/app/page.tsx b/src/app/page.tsx index 678f715..6435808 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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." /> @@ -150,9 +150,9 @@ export default function LandingPage() { @@ -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: "#" }, ], - }, + } ]} /> ); -} \ No newline at end of file +} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index d97fa01..aa7fd03 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -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; }