diff --git a/src/App.tsx b/src/App.tsx index ef7d2e9..feb2e56 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,7 +8,7 @@ import NavbarCentered from '@/components/ui/NavbarCentered'; import PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards'; import TeamDetailedCards from '@/components/sections/team/TeamDetailedCards'; import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; -import { Clock, Heart, Wheat } from "lucide-react"; +import { Clock, Heart, Wheat, Instagram } from "lucide-react"; export default function App() { return ( @@ -61,21 +61,21 @@ export default function App() { items={[ { icon: Wheat, - title: "Organic Ingredients", description: "Only the finest, locally sourced organic flour for our breads.", mediaItems: [ + title: "Organic Ingredients", description: "Only the finest, locally sourced organic flour for our breads.", mediaItems: [ { imageSrc: "https://pixabay.com/get/g2589219acb29917720c16ee539d60a08389a0e2b9eadfc48d640d1ada88d6fd0f61f3719a88533db741893c447b96b5d7de16d811a0f39e58d1a04ef31734574_1280.jpg" }, { imageSrc: "https://pixabay.com/get/ga3ff30d0a0c713370769eacf3ee5679679aad5ea23c0f2254d2b06c4f61905bdf4b26d961893d3627cfdf47afaa27d493619217d71b9ffe01a1972c250a29afd_1280.jpg" } ] }, { icon: Clock, - title: "Slow-Fermented", description: "Our dough rises for 24 hours to ensure deep flavor and gut health.", mediaItems: [ + title: "Slow-Fermented", description: "Our dough rises for 24 hours to ensure deep flavor and gut health.", mediaItems: [ { imageSrc: "https://pixabay.com/get/g234a8464749ba38579bdb0e0903d3a88d442e7837ae47b50fb1c60a9fe4731f29fc1c771951e1290f4bfd7251839c6968d18fb1110dac5abf6694275031fbd69_1280.jpg" }, { imageSrc: "https://pixabay.com/get/g4aaaa5b384cfe6f79cc0caf44e12c0f76a135b4d0fc71fdf86ebd0aeeff762c96d5f72f9de5fa0af84bc3769e4a381b1cd685c00c98c1b10f9fc7263520800ba_1280.jpg" } ] }, { icon: Heart, - title: "Artisan Hands", description: "Baked daily by skilled hands who care about your perfect crust.", mediaItems: [ + title: "Artisan Hands", description: "Baked daily by skilled hands who care about your perfect crust.", mediaItems: [ { imageSrc: "https://pixabay.com/get/gc644968ae2cb3610f064dcc1ac7b1ba1a77fe1a68d4fcebd69f0cdedc14c4d6adfecf94ff6aa7187d3e1a73832dfd2e8be3e889f9eea54a09f15f24d50b84702_1280.jpg" }, { imageSrc: "https://pixabay.com/get/g4ea38f45356917bb702c924b1da6559764849f8093a63b7b11bc1068aca89785eda47b5e065b56dde5fc5f38803d2fac3b88180d63ae6fb646e818209556d4ee_1280.jpg" } ] @@ -112,9 +112,9 @@ export default function App() { title="The Artisan Crew" description="Our team is dedicated to keeping traditional baking alive for our community." members={[ - { name: "John Doe", role: "Head Baker", description: "Over 15 years of experience in artisan bread making.", socialLinks: [], imageSrc: "https://pixabay.com/get/gf5c1cbaa9d7a0b59ba5df343110fe0eefd378ec84dda292816a0b0efbae38d9e66a93e1124fdc0a607b630621d188170b97ce95b243561d862f95abfd6e8595a_1280.jpg" }, - { name: "Jane Smith", role: "Pastry Chef", description: "Specialist in classic French patisserie and modern twists.", socialLinks: [], imageSrc: "https://pixabay.com/get/g53e700d2a9e3a947a5fdfbcbf0b716841cd4dd323335577d42329fd760c745a07a2bdc88a7b1391c57be679b45190a0b_1280.jpg" }, - { name: "Alex Baker", role: "Head of Bread", description: "The master of fermentation and sourdough science.", socialLinks: [], imageSrc: "https://pixabay.com/get/g19efa09eda9aff452a664a21e95a6550d105cb5312d6adf41a2e4c4509a3ebdc1b9f07434d39f832df9cdcaced5d9fb8b82e539d5f9d0f787472b23ec752a79f_1280.jpg" } + { name: "John Doe", role: "Head Baker", description: "Over 15 years of experience in artisan bread making.", socialLinks: [{ icon: Instagram, url: "#" }], imageSrc: "https://pixabay.com/get/gf5c1cbaa9d7a0b59ba5df343110fe0eefd378ec84dda292816a0b0efbae38d9e66a93e1124fdc0a607b630621d188170b97ce95b243561d862f95abfd6e8595a_1280.jpg" }, + { name: "Jane Smith", role: "Pastry Chef", description: "Specialist in classic French patisserie and modern twists.", socialLinks: [{ icon: Instagram, url: "#" }], imageSrc: "https://pixabay.com/get/g53e700d2a9e3a947a5fdfbcbf0b716841cd4dd323335577d42329fd760c745a07a2bdc88a7b1391c57be679b45190a0b_1280.jpg" }, + { name: "Alex Baker", role: "Head of Bread", description: "The master of fermentation and sourdough science.", socialLinks: [{ icon: Instagram, url: "#" }], imageSrc: "https://pixabay.com/get/g19efa09eda9aff452a664a21e95a6550d105cb5312d6adf41a2e4c4509a3ebdc1b9f07434d39f832df9cdcaced5d9fb8b82e539d5f9d0f787472b23ec752a79f_1280.jpg" } ]} />