diff --git a/src/components/BottomNav.jsx b/src/components/BottomNav.jsx index 2d0f273..1a381bf 100644 --- a/src/components/BottomNav.jsx +++ b/src/components/BottomNav.jsx @@ -1,38 +1,51 @@ import React from "react"; +import { Home, Coffee, Plus, Bookmark, User } from "lucide-react"; export default function BottomNav({ view, setView, setSelectedBean, onCreatePress }) { const items = [ - { id: "dashboard", label: "Home", icon: "🏠" }, - { id: "beans", label: "Recipes", icon: "🫘" }, - { id: "create", label: "Create", icon: "+", isAction: true }, - { id: "brews", label: "Logs", icon: "📋" }, - { id: "profile", label: "Profile", icon: "👤" }, + { id: "dashboard", label: "Home", Icon: Home }, + { id: "beans", label: "Recipes", Icon: Coffee }, + { id: "create", label: "Create", Icon: Plus, isAction: true }, + { id: "brews", label: "Logs", Icon: Bookmark }, + { id: "profile", label: "Profile", Icon: User }, ]; return ( -