4 Commits

Author SHA1 Message Date
4022c65f67 Update src/app/page.tsx 2026-04-18 13:42:42 +00:00
1780a77c6b Merge version_3 into main
Merge version_3 into main
2026-04-18 13:41:06 +00:00
6b5a0e48a9 Update src/app/page.tsx 2026-04-18 13:41:03 +00:00
55a99b5da9 Merge version_2 into main
Merge version_2 into main
2026-04-18 13:36:26 +00:00

View File

@@ -123,22 +123,19 @@ export default function LandingPage() {
products={[
{
id: "p1", brand: "One Skein", name: "Lã Merino Pastel", price: "12€", rating: 5,
reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yarn-basket-with-pullover_23-2148791030.jpg"},
{
id: "p2", brand: "One Skein", name: "Alpaca Sage Green", price: "15€", rating: 5,
reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/bunch-small-fresh-fish_23-2148263886.jpg"},
reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yarn-basket-with-pullover_23-2148791030.jpg", onProductClick: () => alert('Adicionado ao carrinho!')},
{
id: "p3", brand: "One Skein", name: "Algodão Rosa Chic", price: "8€", rating: 4,
reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/wool-space-bottom_23-2147691698.jpg"},
reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/wool-space-bottom_23-2147691698.jpg", onProductClick: () => alert('Adicionado ao carrinho!')},
{
id: "p4", brand: "One Skein", name: "Lã Lilás Suave", price: "10€", rating: 5,
reviewCount: "22", imageSrc: "http://img.b2bpic.net/free-photo/colorful-wool-ball-wooden-backdrop_23-2148164418.jpg"},
reviewCount: "22", imageSrc: "http://img.b2bpic.net/free-photo/colorful-wool-ball-wooden-backdrop_23-2148164418.jpg", onProductClick: () => alert('Adicionado ao carrinho!')},
{
id: "p5", brand: "One Skein", name: "Kit Agulhas Luxo", price: "25€", rating: 5,
reviewCount: "4", imageSrc: "http://img.b2bpic.net/free-photo/woman-making-lovely-bunny-doll-from-yarn-easter-holiday-celebration-concept_1150-9208.jpg"},
reviewCount: "4", imageSrc: "http://img.b2bpic.net/free-photo/woman-making-lovely-bunny-doll-from-yarn-easter-holiday-celebration-concept_1150-9208.jpg", onProductClick: () => alert('Adicionado ao carrinho!')},
{
id: "p6", brand: "One Skein", name: "Kit Tricô Iniciante", price: "35€", rating: 5,
reviewCount: "10", imageSrc: "http://img.b2bpic.net/free-photo/top-view-present-with-tags-scissors_23-2148370121.jpg"},
reviewCount: "10", imageSrc: "http://img.b2bpic.net/free-photo/top-view-present-with-tags-scissors_23-2148370121.jpg", onProductClick: () => alert('Adicionado ao carrinho!')},
]}
title="Loja de Sonhos"
description="Explora a nossa seleção organizada de lãs, kits e acessórios artesanais."
@@ -236,4 +233,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}