Update src/app/products/page.tsx

This commit is contained in:
2026-04-16 15:53:45 +00:00
parent 296da9724b
commit 61c14dd7cb

View File

@@ -7,7 +7,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,28 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Mwanzo Paints"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
@@ -57,48 +43,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Paints",
price: "Request Quote",
variant: "Premium Emulsion",
imageSrc: "http://img.b2bpic.net/free-photo/colorful-paint-cans-assortment-high-angle_23-2149601073.jpg",
},
{
id: "p2",
name: "Tiles",
price: "Request Quote",
variant: "Porcelain/Ceramic",
imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12835.jpg",
},
{
id: "p3",
name: "Mirrors",
price: "Request Quote",
variant: "Custom/Standard",
imageSrc: "http://img.b2bpic.net/free-photo/view-modern-entryway-with-interior-decor_23-2150790897.jpg",
},
{
id: "p4",
name: "Accessories",
price: "Request Quote",
variant: "Full Tools",
imageSrc: "http://img.b2bpic.net/free-photo/assortment-painting-items-with-yellow-paint_23-2149580013.jpg",
},
{
id: "p5",
name: "Thinsets",
price: "Request Quote",
variant: "High Grade",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-tiles-building-market_1303-26793.jpg",
},
{
id: "p6",
name: "Primers",
price: "Request Quote",
variant: "All Surfaces",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-colorful-paint-cans-arrangement_23-2149601040.jpg",
},
{ id: "p1", name: "Paints", price: "Request Quote", variant: "Premium Emulsion", imageSrc: "http://img.b2bpic.net/free-photo/colorful-paint-cans-assortment-high-angle_23-2149601073.jpg" },
{ id: "p2", name: "Tiles", price: "Request Quote", variant: "Porcelain/Ceramic", imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12835.jpg" },
{ id: "p3", name: "Mirrors", price: "Request Quote", variant: "Custom/Standard", imageSrc: "http://img.b2bpic.net/free-photo/view-modern-entryway-with-interior-decor_23-2150790897.jpg" },
{ id: "p4", name: "Accessories", price: "Request Quote", variant: "Full Tools", imageSrc: "http://img.b2bpic.net/free-photo/assortment-painting-items-with-yellow-paint_23-2149580013.jpg" },
{ id: "p5", name: "Thinsets", price: "Request Quote", variant: "High Grade", imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-tiles-building-market_1303-26793.jpg" },
{ id: "p6", name: "Primers", price: "Request Quote", variant: "All Surfaces", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-colorful-paint-cans-arrangement_23-2149601040.jpg" },
]}
title="Comprehensive Catalog"
description="Your ultimate source for all interior and exterior finishing needs."
@@ -114,16 +64,8 @@ export default function LandingPage() {
title="Product Metrics"
description="We maintain a robust inventory to serve all project sizes."
metrics={[
{
id: "m1",
value: "1000+",
description: "Color Shades",
},
{
id: "m2",
value: "500+",
description: "Tile Designs",
},
{ id: "m1", value: "1000+", description: "Color Shades" },
{ id: "m2", value: "500+", description: "Tile Designs" },
]}
/>
</div>
@@ -131,32 +73,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Services",
items: [
{
label: "Consultation",
href: "/services",
},
{
label: "Delivery",
href: "/services",
},
],
},
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Consultation", href: "/services" }, { label: "Delivery", href: "/services" }] },
]}
bottomLeftText="© 2024 Mwanzo Paints Limited, Kitale, Kenya."
bottomRightText="Built with quality."