diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 77d7a16..ebcdaf5 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -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 ( @@ -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" }, ]} /> @@ -131,32 +73,8 @@ export default function LandingPage() {