File size: 1,348 Bytes
b3778b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | import type { Product } from "../../types";
export const roomVisualizerProducts: Product[] = [
{
id: 1,
brand: "Natucer",
name: "Boston North Mate 22.5x45",
ref: "30466",
size: "22.5 x 45 cm",
image: "https://images.unsplash.com/photo-1516594798947-e65505dbb29d?w=300",
},
{
id: 2,
brand: "Natucer",
name: "Boston Brick Red 10x20",
ref: "30467",
size: "10 x 20 cm",
image: "https://images.unsplash.com/photo-1523413555809-0fb8a4da203d?w=300",
},
{
id: 3,
brand: "Natucer",
name: "Wood Line Oak 15x60",
ref: "30468",
size: "15 x 60 cm",
image: "https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=300",
},
{
id: 4,
brand: "Pamesa",
name: "Atrium Caspio 30x60",
ref: "12604",
size: "30 x 60 cm",
image: "https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?w=300",
},
{
id: 5,
brand: "Pamesa",
name: "Koncept Grey 60x60",
ref: "12605",
size: "60 x 60 cm",
image: "https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=300",
},
{
id: 6,
brand: "Pamesa",
name: "Castle Walnut 20x120",
ref: "12606",
size: "20 x 120 cm",
image: "https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=300",
},
];
|