1 Commits

Author SHA1 Message Date
56ce102ea1 Update src/app/page.tsx 2026-04-14 14:21:05 +00:00

View File

@@ -85,23 +85,17 @@ export default function LandingPage() {
layout="section" layout="section"
products={[ products={[
{ {
id: "1", name: "Fresh Pork (Kasim)", price: "₱280.00", imageSrc: "http://img.b2bpic.net/free-photo/lady-choosing-raw-meat-counter_7502-4761.jpg", rating: 5, id: "1", name: "Fresh Pork (Kasim)", price: "₱280.00", imageSrc: "http://img.b2bpic.net/free-photo/lady-choosing-raw-meat-counter_7502-4761.jpg", rating: 5, onProductClick: () => window.location.href = '#footer' },
},
{ {
id: "2", name: "Native Vegetables", price: "₱60.00", imageSrc: "http://img.b2bpic.net/free-photo/different-vegetables-paper-bag-grey_1220-4289.jpg", rating: 4, id: "2", name: "Native Vegetables", price: "₱60.00", imageSrc: "http://img.b2bpic.net/free-photo/different-vegetables-paper-bag-grey_1220-4289.jpg", rating: 4, onProductClick: () => window.location.href = '#footer' },
},
{ {
id: "3", name: "Fresh Tilapia", price: "₱150.00", imageSrc: "http://img.b2bpic.net/free-photo/mussel-prawn-board-salt-marble-background_114579-91200.jpg", rating: 5, id: "3", name: "Fresh Tilapia", price: "₱150.00", imageSrc: "http://img.b2bpic.net/free-photo/mussel-prawn-board-salt-marble-background_114579-91200.jpg", rating: 5, onProductClick: () => window.location.href = '#footer' },
},
{ {
id: "4", name: "Special Rice (25kg)", price: "₱1250.00", imageSrc: "http://img.b2bpic.net/free-photo/rice-spilled-from-bag_23-2147897531.jpg", rating: 5, id: "4", name: "Special Rice (25kg)", price: "₱1250.00", imageSrc: "http://img.b2bpic.net/free-photo/rice-spilled-from-bag_23-2147897531.jpg", rating: 5, onProductClick: () => window.location.href = '#footer' },
},
{ {
id: "5", name: "Canned Essentials", price: "₱45.00", imageSrc: "http://img.b2bpic.net/free-photo/real-food-pyramid-arrangement-still-life_23-2150238987.jpg", rating: 4, id: "5", name: "Canned Essentials", price: "₱45.00", imageSrc: "http://img.b2bpic.net/free-photo/real-food-pyramid-arrangement-still-life_23-2150238987.jpg", rating: 4, onProductClick: () => window.location.href = '#footer' },
},
{ {
id: "6", name: "Farm Eggs (Tray)", price: "₱220.00", imageSrc: "http://img.b2bpic.net/free-photo/common-food-that-can-cause-allergic-reaction-people_23-2149870516.jpg", rating: 5, id: "6", name: "Farm Eggs (Tray)", price: "₱220.00", imageSrc: "http://img.b2bpic.net/free-photo/common-food-that-can-cause-allergic-reaction-people_23-2149870516.jpg", rating: 5, onProductClick: () => window.location.href = '#footer' },
},
]} ]}
/> />
</div> </div>
@@ -176,4 +170,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }