Update src/app/products/page.tsx

This commit is contained in:
2026-04-21 21:40:36 +00:00
parent d02691bca2
commit 9f2eac7f0c

View File

@@ -25,20 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "Visit Us",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Visit Us", id: "/contact" },
]}
brandName="Malik Mobile Shop"
button={{ text: "Get Started", href: "#" }}
/>
</div>
@@ -49,48 +41,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Mobile Phones",
price: "From Store",
variant: "New Arrivals",
imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913301.jpg",
},
{
id: "p2",
name: "Fast Chargers",
price: "Available",
variant: "Essential",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-orange-slices-drinkl_23-2149418285.jpg",
},
{
id: "p3",
name: "Premium Cables",
price: "Available",
variant: "Reliable",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-device-table_23-2150994346.jpg",
},
{
id: "p4",
name: "Wireless Audio",
price: "Available",
variant: "Latest",
imageSrc: "http://img.b2bpic.net/free-photo/diary-cellphone-camera-earphone-coffee-cup-paperclip-alarm-clock-pencil-white-desk_23-2148061608.jpg",
},
{
id: "p5",
name: "Power Banks",
price: "Available",
variant: "High Capacity",
imageSrc: "http://img.b2bpic.net/free-photo/white-usb-charging-gadgets-blurred-background-room-closeup_169016-15164.jpg",
},
{
id: "p6",
name: "SIM Cards",
price: "Support",
variant: "Connect",
imageSrc: "http://img.b2bpic.net/free-photo/smartphone-surrounded-with-scrub-glove-soap-perfume-bottle-towel-sponge-marble-backdrop_23-2147926923.jpg",
},
{ id: "p1", name: "Mobile Phones", price: "From Store", variant: "New Arrivals", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913301.jpg" },
{ id: "p2", name: "Fast Chargers", price: "Available", variant: "Essential", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-orange-slices-drinkl_23-2149418285.jpg" },
{ id: "p3", name: "Premium Cables", price: "Available", variant: "Reliable", imageSrc: "http://img.b2bpic.net/free-photo/still-life-device-table_23-2150994346.jpg" },
{ id: "p4", name: "Wireless Audio", price: "Available", variant: "Latest", imageSrc: "http://img.b2bpic.net/free-photo/diary-cellphone-camera-earphone-coffee-cup-paperclip-alarm-clock-pencil-white-desk_23-2148061608.jpg" },
{ id: "p5", name: "Power Banks", price: "Available", variant: "High Capacity", imageSrc: "http://img.b2bpic.net/free-photo/white-usb-charging-gadgets-blurred-background-room-closeup_169016-15164.jpg" },
{ id: "p6", name: "SIM Cards", price: "Support", variant: "Connect", imageSrc: "http://img.b2bpic.net/free-photo/smartphone-surrounded-with-scrub-glove-soap-perfume-bottle-towel-sponge-marble-backdrop_23-2147926923.jpg" },
]}
title="Our Product Range"
description="Premium accessories and devices tailored to your needs. Availability may vary."
@@ -102,8 +58,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Shop Support"
description={[
"Product availability changes frequently. Please call us or visit us to confirm the latest stock and pricing before coming by. We are always happy to help you select the best device or accessory for your needs.",
]}
"Product availability changes frequently. Please call us or visit us to confirm the latest stock and pricing before coming by. We are always happy to help you select the best device or accessory for your needs."]}
/>
</div>
@@ -111,13 +66,9 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="Malik Mobile Shop"
leftLink={{
text: "Call Now: 03004688977",
href: "tel:03004688977",
}}
text: "Call Now: 03004688977", href: "tel:03004688977"}}
rightLink={{
text: "Get Directions",
href: "https://maps.google.com",
}}
text: "Get Directions", href: "https://maps.google.com"}}
/>
</div>
</ReactLenis>