diff --git a/public/images/produits/baguette.jpeg b/public/images/produits/baguette.jpeg new file mode 100644 index 0000000..4fab15a Binary files /dev/null and b/public/images/produits/baguette.jpeg differ diff --git a/public/images/produits/chocolatine.jpg b/public/images/produits/chocolatine.jpg new file mode 100644 index 0000000..5197d93 Binary files /dev/null and b/public/images/produits/chocolatine.jpg differ diff --git a/public/images/produits/croissant.jpeg b/public/images/produits/croissant.jpeg new file mode 100644 index 0000000..f44b301 Binary files /dev/null and b/public/images/produits/croissant.jpeg differ diff --git a/public/images/produits/cupcake.jpg b/public/images/produits/cupcake.jpg new file mode 100644 index 0000000..0acc01e Binary files /dev/null and b/public/images/produits/cupcake.jpg differ diff --git a/public/images/produits/gateau-royal.jpg b/public/images/produits/gateau-royal.jpg new file mode 100644 index 0000000..7f17ea9 Binary files /dev/null and b/public/images/produits/gateau-royal.jpg differ diff --git a/public/images/produits/pagnot.jpeg b/public/images/produits/pagnot.jpeg new file mode 100644 index 0000000..19623eb Binary files /dev/null and b/public/images/produits/pagnot.jpeg differ diff --git a/public/images/produits/pain.jpeg b/public/images/produits/pain.jpeg new file mode 100644 index 0000000..7c1e808 Binary files /dev/null and b/public/images/produits/pain.jpeg differ diff --git a/public/images/ressources/produits-boutique.jpeg b/public/images/ressources/produits-boutique.jpeg new file mode 100644 index 0000000..9fed238 Binary files /dev/null and b/public/images/ressources/produits-boutique.jpeg differ diff --git a/src/app/produits/page.tsx b/src/app/produits/page.tsx new file mode 100644 index 0000000..05f0f57 --- /dev/null +++ b/src/app/produits/page.tsx @@ -0,0 +1,149 @@ +import Image from 'next/image'; + +interface Product { + id: number; + name: string; + description: string; + price: string; + category: string; + image: string; +} + +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: "1.50€", + category: "Pains", + image: "/images/produits/pagnot.jpeg" + }, + { + id: 2, + name: "Baguette Tradition", + description: "La classique baguette française, croustillante à l'extérieur et moelleuse à l'intérieur.", + price: "0.90€", + category: "Pains", + image: "/images/produits/baguette.jpeg" + }, + { + id: 3, + name: "Cupcake Vanille", + description: "Délicieux cupcake à la vanille de Madagascar, surmonté d'une crème légère.", + price: "3.00€", + category: "Pâtisseries", + image: "/images/produits/cupcake.jpg" + }, + { + id: 4, + name: "Gâteau Royal Chocolat", + description: "Gâteau au chocolat noir intense, avec ses trois couches de mousse au chocolat.", + price: "12.50€", + category: "Pâtisseries", + image: "/images/produits/gateau-royal.jpg" + }, + { + id: 5, + name: "Croissant Pur Beurre", + description: "Croissant artisanal au beurre AOP, feuilleté et croustillant.", + price: "1.45€", + category: "Viennoiseries", + image: "/images/produits/croissant.jpeg" + }, + { + id: 6, + name: "Chocolatine", + description: "Viennoiserie au chocolat noir, feuilletée et généreusement garnie.", + price: "1.75€", + category: "Viennoiseries", + image: "/images/produits/chocolatine.jpg" + } +]; + +const ProductsPage = () => { + return ( +
+ {/* Hero Section */} +
+ Boutique de produits +
+
+
+

+ Nos Produits +

+

+ Découvrez notre sélection de produits artisanaux, préparés chaque jour avec passion +

+
+
+
+ + {/* Products Section */} +
+ {/* Categories */} +
+ {['Tous', 'Pains', 'Viennoiseries', 'Pâtisseries'].map((category) => ( + + ))} +
+ + {/* Products Grid */} +
+ {products.map((product) => ( +
+ {/* Image Container */} +
+
+ {product.name} +
+ + {/* Content */} +
+
+

+ {product.name} +

+ + {product.price} + +
+

+ {product.description} +

+
+ + {product.category} + + +
+
+
+ ))} +
+
+
+ ); +}; + +export default ProductsPage; \ No newline at end of file diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 168f5f8..c047a04 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -39,8 +39,8 @@ const Footer = () => {
  • - - Commander + + Contact
  • diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 97ad058..74605f2 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -9,7 +9,6 @@ const Header = () => { const navItems = [ { label: 'Nos Produits', href: '/produits' }, { label: 'Notre Histoire', href: '/notre-histoire' }, - { label: 'Commander', href: '/commander' }, { label: 'Contact', href: '/contact' }, ];