Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 96a12c15b8 | |||
| 2604a04c5e |
@@ -190,17 +190,17 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
products={[
|
||||
{
|
||||
id: "plastic", name: "Plastics (PET, HDPE)", price: "Free Pickup", variant: "Bottles, Containers", imageSrc: "http://img.b2bpic.net/free-photo/plastic-garbage-conveyor-belt-waste-recycling-factory_1268-23430.jpg", imageAlt: "Plastic waste"},
|
||||
id: "plastic", name: "Plastics (PET, HDPE)", price: "Free Pickup", variant: "Bottles, Containers", imageSrc: "http://img.b2bpic.net/free-photo/plastic-garbage-conveyor-belt-waste-recycling-factory_1268-23430.jpg", imageAlt: "Plastic waste", onProductClick: () => console.log('Product clicked:', 'plastic')},
|
||||
{
|
||||
id: "paper", name: "Paper & Cardboard", price: "Free Pickup", variant: "Newspapers, Boxes", imageSrc: "http://img.b2bpic.net/free-photo/father-s-day-celebration-with-typewriter_23-2150230994.jpg", imageAlt: "Paper and cardboard waste"},
|
||||
id: "paper", name: "Paper & Cardboard", price: "Free Pickup", variant: "Newspapers, Boxes", imageSrc: "http://img.b2bpic.net/free-photo/father-s-day-celebration-with-typewriter_23-2150230994.jpg", imageAlt: "Paper and cardboard waste", onProductClick: () => console.log('Product clicked:', 'paper')},
|
||||
{
|
||||
id: "glass", name: "Glass Bottles", price: "Free Pickup", variant: "Beverage bottles", imageSrc: "http://img.b2bpic.net/free-photo/collection-colorful-light-bulbs_53876-32343.jpg", imageAlt: "Glass bottles"},
|
||||
id: "glass", name: "Glass Bottles", price: "Free Pickup", variant: "Beverage bottles", imageSrc: "http://img.b2bpic.net/free-photo/collection-colorful-light-bulbs_53876-32343.jpg", imageAlt: "Glass bottles", onProductClick: () => console.log('Product clicked:', 'glass')},
|
||||
{
|
||||
id: "metal", name: "Metals (Aluminum, Steel)", price: "Free Pickup", variant: "Cans, Scraps", imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-background_1232-2900.jpg", imageAlt: "Metal cans and scraps"},
|
||||
id: "metal", name: "Metals (Aluminum, Steel)", price: "Free Pickup", variant: "Cans, Scraps", imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-background_1232-2900.jpg", imageAlt: "Metal cans and scraps", onProductClick: () => console.log('Product clicked:', 'metal')},
|
||||
{
|
||||
id: "organic", name: "Organic Waste", price: "Subscription", variant: "Food scraps, Garden", imageSrc: "http://img.b2bpic.net/free-photo/assortment-compost-made-rotten-food-with-copy-space_23-2149073797.jpg", imageAlt: "Organic waste"},
|
||||
id: "organic", name: "Organic Waste", price: "Subscription", variant: "Food scraps, Garden", imageSrc: "http://img.b2bpic.net/free-photo/assortment-compost-made-rotten-food-with-copy-space_23-2149073797.jpg", imageAlt: "Organic waste", onProductClick: () => console.log('Product clicked:', 'organic')},
|
||||
{
|
||||
id: "textiles", name: "Textiles & Clothes", price: "Donation", variant: "Old garments, Fabric", imageSrc: "http://img.b2bpic.net/free-photo/unboxing_23-2148161718.jpg", imageAlt: "Textile waste"},
|
||||
id: "textiles", name: "Textiles & Clothes", price: "Donation", variant: "Old garments, Fabric", imageSrc: "http://img.b2bpic.net/free-photo/unboxing_23-2148161718.jpg", imageAlt: "Textile waste", onProductClick: () => console.log('Product clicked:', 'textiles')},
|
||||
]}
|
||||
title="What We Recycle"
|
||||
description="Discover the wide range of materials we collect and meticulously process, turning waste into valuable raw materials. Your waste is our treasure."
|
||||
|
||||
Reference in New Issue
Block a user