Update src/app/page.tsx

This commit is contained in:
2026-05-18 04:36:44 +00:00
parent c6bee58512
commit 1abf99bc16

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Store", id: "store" },
{ name: "Contact", id: "contact" },
]}
brandName="Khater Tires"
@@ -93,6 +94,20 @@ export default function LandingPage() {
/>
</div>
<div id="store" data-section="store">
<FeatureCardTen
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{ title: "Premium Tires", description: "High performance and durable tires.", media: { imageSrc: "https://img.b2bpic.net/free-photo/close-up-car-tires_23-2148816669.jpg" }, items: [], reverse: false },
{ title: "Car Batteries", description: "Reliable batteries for all vehicle makes.", media: { imageSrc: "https://img.b2bpic.net/free-photo/car-battery-charging-concept_23-2148816670.jpg" }, items: [], reverse: true }
]}
title="Our Store"
description="Quality products for your automotive needs."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
useInvertedBackground={false}
@@ -157,7 +172,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About", href: "#about" }, { label: "Services", href: "#features" }] },
{ items: [{ label: "About", href: "#about" }, { label: "Services", href: "#features" }, { label: "Store", href: "#store" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "Location", href: "#" }] },
]}
logoText="Khater Tires"
@@ -166,4 +181,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}