diff --git a/src/components/sections/IngredientStorySection.tsx b/src/components/sections/IngredientStorySection.tsx new file mode 100644 index 0000000..393475b --- /dev/null +++ b/src/components/sections/IngredientStorySection.tsx @@ -0,0 +1,56 @@ +'use client'; +import Image from 'next/image'; + +export default function IngredientStorySection() { + const ingredients = [ + { + name: 'Marula', + benefit: 'Deep hydration & antioxidant protection', + origin: 'Wild-harvested from baobab trees in Limpopo', + image: 'https://images.pexels.com/photos/36813177/pexels-photo-36813177.jpeg?auto=compress&cs=tinysrgb&h=350' + }, + { + name: 'Rooibos', + benefit: 'Calms redness & fights inflammation', + origin: 'Cederberg region, hand-picked and fermented', + image: 'https://images.pexels.com/photos/28371334/pexels-photo-28371334.jpeg?auto=compress&cs=tinysrgb&h=350' + }, + { + name: 'Buchu', + benefit: 'Antimicrobial & purifying for problem skin', + origin: 'Clanwilliam fynbos, carefully distilled', + image: 'https://images.pexels.com/photos/36813177/pexels-photo-36813177.jpeg?auto=compress&cs=tinysrgb&h=350' + } + ]; + + return ( +
+
+

Three Botanicals, One Purpose

+

+ Every jar tells a story of heritage — cold-pressed from nature's finest ingredients, grown by communities who have used them for generations. +

+
+ {ingredients.map((item) => ( +
+
+ {item.name} +
+
+

{item.name}

+

{item.benefit}

+

{item.origin}

+
+
+ ))} +
+
+
+ ); +} \ No newline at end of file