9 Commits

Author SHA1 Message Date
b1006248c3 Update src/app/page.tsx 2026-05-18 04:45:27 +00:00
1b0c8a4f58 Merge version_3 into main
Merge version_3 into main
2026-05-18 04:41:23 +00:00
009fbc3c98 Update src/app/page.tsx 2026-05-18 04:41:17 +00:00
5727204c38 Merge version_3 into main
Merge version_3 into main
2026-05-18 04:40:39 +00:00
9e5a6d2d25 Update src/app/page.tsx 2026-05-18 04:40:35 +00:00
7d29f057fb Merge version_2 into main
Merge version_2 into main
2026-05-18 04:36:47 +00:00
1abf99bc16 Update src/app/page.tsx 2026-05-18 04:36:44 +00:00
c6bee58512 Merge version_1 into main
Merge version_1 into main
2026-05-18 04:31:44 +00:00
fff6f8a85e Merge version_1 into main
Merge version_1 into main
2026-05-18 04:31:19 +00:00

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
@@ -34,6 +35,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 +95,24 @@ export default function LandingPage() {
/>
</div>
<div id="store" data-section="store">
<ProductCardFour
gridVariant="one-large-left-three-stacked-right"
animationType="slide-up"
title="Our Product Store"
description="Shop our catalog of tires and batteries with ease."
useInvertedBackground={true}
textboxLayout="default"
products={[
{ id: "t1", name: "Performance Tire - 18 inch", price: "$150", variant: "Car Tires", imageSrc: "https://img.b2bpic.net/free-photo/close-up-car-tires_23-2148816669.jpg" },
{ id: "t2", name: "Standard Battery - 70Ah", price: "$95", variant: "Car Batteries", imageSrc: "https://img.b2bpic.net/free-photo/car-battery-charging-concept_23-2148816670.jpg" },
{ id: "t3", name: "Premium All-Weather Tire", price: "$185", variant: "Car Tires", imageSrc: "https://img.b2bpic.net/free-photo/car-tires-stacked-store_23-2149303502.jpg" },
{ id: "t4", name: "Heavy-Duty Truck Battery", price: "$210", variant: "Truck Batteries", imageSrc: "https://img.b2bpic.net/free-photo/truck-battery-isolated_23-2149303503.jpg" }
]}
actionButtonClassName="hover:scale-105"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
useInvertedBackground={false}
@@ -157,7 +177,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"