Bob AI: fix build error in src/pages/HomePage.tsx
This commit is contained in:
@@ -136,37 +136,37 @@ export default function HomePage() {
|
||||
name: "Oak Hardwood Planks",
|
||||
price: "$12.99 / sq ft",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13245.jpg",
|
||||
onAddToCart: "() => console.log('Added Oak')",
|
||||
onAddToCart: (quantity) => console.log('Added Oak', quantity),
|
||||
},
|
||||
{
|
||||
name: "Maple Butcher Block",
|
||||
price: "$189.00 / piece",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/leaf-texture-background_53876-88827.jpg",
|
||||
onAddToCart: "() => console.log('Added Maple')",
|
||||
onAddToCart: (quantity) => console.log('Added Maple', quantity),
|
||||
},
|
||||
{
|
||||
name: "Walnut Live Edge Slab",
|
||||
price: "$350.00 / piece",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/contrast-wood-stone-modern-furniture-premium-textures_169016-71185.jpg",
|
||||
onAddToCart: "() => console.log('Added Walnut')",
|
||||
onAddToCart: (quantity) => console.log('Added Walnut', quantity),
|
||||
},
|
||||
{
|
||||
name: "Pine Structural Beams",
|
||||
price: "$8.50 / linear ft",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/branches-leaves-norfolk-island-pine-araukariakuki-closeup-blurred-blue-sky-background-idea-postcard-article-about-plant-diversity_166373-3242.jpg",
|
||||
onAddToCart: "() => console.log('Added Pine')",
|
||||
onAddToCart: (quantity) => console.log('Added Pine', quantity),
|
||||
},
|
||||
{
|
||||
name: "Cherry Turning Blanks",
|
||||
price: "$45.00 / each",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-wooden-door_23-2147625993.jpg",
|
||||
onAddToCart: "() => console.log('Added Cherry')",
|
||||
onAddToCart: (quantity) => console.log('Added Cherry', quantity),
|
||||
},
|
||||
{
|
||||
name: "Cedar Aromatic Boards",
|
||||
price: "$10.25 / sq ft",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-hips-anise-pine-cones-white-surface_114579-55129.jpg",
|
||||
onAddToCart: "() => console.log('Added Cedar')",
|
||||
onAddToCart: (quantity) => console.log('Added Cedar', quantity),
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user