Archived
2.0
This commit is contained in:
+308
-44
@@ -1,66 +1,330 @@
|
||||
import { Product } from '@/types/product';
|
||||
|
||||
export const categories = ['Tous', 'Pains', 'Viennoiseries', 'Pâtisseries'];
|
||||
export const categories = ['All', 'Cookies', 'Cakes', 'Rolls', 'Pie', 'Brownies'];
|
||||
|
||||
export const products: Product[] = [
|
||||
{
|
||||
id: 1,
|
||||
name: "Pagnot Traditionnel",
|
||||
description: "Pain de campagne à la croûte dorée et croustillante, façonné à la main selon la tradition.",
|
||||
price: "3.50€",
|
||||
category: "Pains",
|
||||
image: "/images/produits/pagnot.jpeg",
|
||||
ingredients: "Farine de blé, eau, levain, sel marin",
|
||||
storage: "À conserver dans un endroit frais et sec, consommer de préférence dans les 2-3 jours"
|
||||
name: "76th Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/76th_birthday_cake.jpg",
|
||||
"/images/products/76th_birthday_cake2.jpg",
|
||||
"/images/products/76th_birthday_cake3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: "Baguette",
|
||||
description: "Pain traditionnel français, croustillant à l'extérieur et moelleux à l'intérieur.",
|
||||
price: "2.00€",
|
||||
category: "Pains",
|
||||
image: "/images/produits/baguette.jpeg",
|
||||
ingredients: "Farine de blé, eau, levain, sel",
|
||||
storage: "À conserver dans un endroit frais et sec, consommer de préférence dans les 2-3 jours"
|
||||
name: "1964 Graduates Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/1964_graduates_cake.jpg",
|
||||
"/images/products/1964_graduates_cake2.jpg",
|
||||
"/images/products/1964_graduates_cake3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: "Chocolatine",
|
||||
description: "Viennoiserie feuilletée au beurre, garnie de chocolat.",
|
||||
price: "1.50€",
|
||||
category: "Viennoiseries",
|
||||
image: "/images/produits/chocolatine.jpg",
|
||||
ingredients: "Farine de blé, beurre, sucre, chocolat",
|
||||
storage: "À conserver dans un endroit frais et sec, consommer de préférence dans les 2-3 jours"
|
||||
name: "Baby Shower Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/babyshower_cake.jpg"],
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: "Croissant",
|
||||
description: "Viennoiserie feuilletée au beurre, idéale pour le petit-déjeuner.",
|
||||
price: "1.50€",
|
||||
category: "Viennoiseries",
|
||||
image: "/images/produits/croissant.jpeg",
|
||||
ingredients: "Farine de blé, beurre, sucre",
|
||||
storage: "À conserver dans un endroit frais et sec, consommer de préférence dans les 2-3 jours"
|
||||
name: "Blueberry Cream Pie",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/blueberry_cream_pie.jpg"],
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: "Cupcake",
|
||||
description: "Petit gâteau moelleux, idéal pour une pause sucrée.",
|
||||
price: "2.00€",
|
||||
category: "Pâtisseries",
|
||||
image: "/images/produits/cupcake.jpg",
|
||||
ingredients: "Farine de blé, beurre, sucre, oeufs",
|
||||
storage: "À conserver dans un endroit frais et sec, consommer de préférence dans les 2-3 jours"
|
||||
name: "Bridesmaids Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/bridesmaids_sugar_cookies.jpg",
|
||||
"/images/products/bridesmaids_sugar_cookies2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
name: "Gâteau Royal Chocolat",
|
||||
description: "Gâteau au chocolat fondant, idéal pour les amateurs de chocolat.",
|
||||
price: "4.00€",
|
||||
category: "Pâtisseries",
|
||||
image: "/images/produits/gateau-royal.jpg",
|
||||
ingredients: "Farine de blé, beurre, sucre, chocolat, oeufs",
|
||||
storage: "À conserver dans un endroit frais et sec, consommer de préférence dans les 2-3 jours"
|
||||
name: "Bundt Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/bundt_cake.jpg"],
|
||||
},
|
||||
];
|
||||
{
|
||||
id: 7,
|
||||
name: "Caramel Rolls",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/carmel_rolls.jpg"],
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
name: "Cat Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/cat_birthday_cake.jpg"],
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
name: "Chocolate Chip Scones",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/ChocalateChip_Scones.jpg"],
|
||||
},
|
||||
{
|
||||
id: 10,
|
||||
name: "Christmas Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/christmas_sugar_cookies.jpg",
|
||||
"/images/products/christmas_sugar_cookies2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 11,
|
||||
name: "Circus Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/circus_birthday_cake.jpg",
|
||||
"/images/products/circus_birthday_cake2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 12,
|
||||
name: "Cookie Bars",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/cookie_bars.jpg",
|
||||
"/images/products/cookie_bars2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 13,
|
||||
name: "Cinnamon Rolls",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/cinnamonrolls.jpg"],
|
||||
},
|
||||
{
|
||||
id: 14,
|
||||
name: "Cow Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/cow_birthday_cake.jpg",
|
||||
"/images/products/cow_birthday_cake2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 15,
|
||||
name: "Cow Cupcakes",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/cow_cupcakes.jpg"],
|
||||
},
|
||||
{
|
||||
id: 16,
|
||||
name: "Doggy Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/doggy_sugar_cookies.jpg",
|
||||
"/images/products/doggy_sugar_cookies2.jpg",
|
||||
"/images/products/doggy_sugar_cookies3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 17,
|
||||
name: "Fall Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/fall_sugar_cookies.jpg",
|
||||
"/images/products/fall_sugar_cookies2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 18,
|
||||
name: "Flower Cupcakes",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/flower_cupcakes.jpg"],
|
||||
},
|
||||
{
|
||||
id: 19,
|
||||
name: "Heart Cakes",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/heart_cakes.jpg",
|
||||
"/images/products/heart_cakes2.jpg",
|
||||
"/images/products/heart_cakes3.jpg",
|
||||
"/images/products/heart_cakes4.jpg",
|
||||
"/images/products/heart_cakes5.jpg",
|
||||
"/images/products/heart_cakes6.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
name: "Lemon Berry Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/lemon_berry_cake.jpg",
|
||||
"/images/products/lemon_berry_cake2.jpg",
|
||||
"/images/products/lemon_berry_cake3.jpg",
|
||||
"/images/products/lemon_berry_cake4.jpg",
|
||||
"/images/products/lemon_berry_cake5.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 21,
|
||||
name: "Macarons",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/macarons.jpg"],
|
||||
},
|
||||
{
|
||||
id: 22,
|
||||
name: "Moana Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/moana_birthday_cake.jpg",
|
||||
"/images/products/moana_birthday_cake2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 23,
|
||||
name: "Natalie Purple Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/natalie_purple_birthday_cake.jpg",
|
||||
"/images/products/natalie_purple_birthday_cake2.jpg",
|
||||
"/images/products/natalie_purple_birthday_cake3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 24,
|
||||
name: "Oreo Brownies",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/oreo_brownies.jpg"],
|
||||
},
|
||||
{
|
||||
id: 25,
|
||||
name: "Peanut Butter Cookie Cake",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/peanutbutter_cookie_cake.jpg",
|
||||
"/images/products/peanutbutter_cookie_cake2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 26,
|
||||
name: "Pink Rose Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/pink_rose_birthday_cake.jpg"],
|
||||
},
|
||||
{
|
||||
id: 27,
|
||||
name: "Princeville Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/princeville_sugar_cookies.jpg",
|
||||
"/images/products/princeville_sugar_cookies2.jpg",
|
||||
"/images/products/princeville_sugar_cookies3.jpg",
|
||||
"/images/products/princeville_sugar_cookies4.jpg",
|
||||
"/images/products/princeville_sugar_cookies5.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 28,
|
||||
name: "Princeville XC Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/princeville_xc_sugar_cookies.jpg",
|
||||
"/images/products/princeville_xc_sugar_cookies2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 29,
|
||||
name: "Pumpkin Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/pumpkin_birthday_cake.jpg",
|
||||
"/images/products/pumpkin_birthday_cake2.jpg",
|
||||
"/images/products/pumpkin_birthday_cake3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 30,
|
||||
name: "Purple Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/purple_birthday_cake.jpg"],
|
||||
},
|
||||
{
|
||||
id: 31,
|
||||
name: "Rainbow Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/rainbow_sugar_cookies.jpg",
|
||||
"/images/products/rainbow_sugar_cookies2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 32,
|
||||
name: "Retirement Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/retirement_cake.jpg"],
|
||||
},
|
||||
{
|
||||
id: 33,
|
||||
name: "Scones",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/scones.jpg"],
|
||||
},
|
||||
{
|
||||
id: 34,
|
||||
name: "Soccer Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/soccer_sugar_cookies.jpg",
|
||||
"/images/products/soccer_sugar_cookies2.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 35,
|
||||
name: "Speciality Cookies",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/speciality_cookies.jpg"],
|
||||
},
|
||||
{
|
||||
id: 36,
|
||||
name: "Strawberry Pie",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/strawberry_pie.jpg",
|
||||
"/images/products/strawberry_pie2.jpg",
|
||||
"/images/products/strawberry_pie3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 37,
|
||||
name: "Timecapsul Sugar Cookies",
|
||||
category: "Pastries",
|
||||
images: ["/images/products/timecapsul_sugar_cookies.jpg"],
|
||||
},
|
||||
{
|
||||
id: 38,
|
||||
name: "Tractor Birthday Cake",
|
||||
category: "Cakes",
|
||||
images: ["/images/products/tractor_birthday_cake.jpg"],
|
||||
},
|
||||
{
|
||||
id: 39,
|
||||
name: "Valentines Cookie Cakes",
|
||||
category: "Pastries",
|
||||
images: [
|
||||
"/images/products/valentines_cookie_cakes.jpg",
|
||||
"/images/products/valentines_cookie_cakes2.jpg",
|
||||
"/images/products/valentines_cookie_cakes3.jpg"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 40,
|
||||
name: "Yellow Wedding Cake",
|
||||
category: "Cakes",
|
||||
images: [
|
||||
"/images/products/yellow_wedding_cake.jpg",
|
||||
"/images/products/yellow_wedding_cake2.jpg",
|
||||
"/images/products/yellow_wedding_cake3.jpg"
|
||||
],
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user