From e6dc87f2127c7b13c1d1006b4b565ed00a23739a Mon Sep 17 00:00:00 2001 From: Matthias Puchstein Date: Thu, 3 Jul 2025 11:14:41 +0200 Subject: [PATCH] nav all icons --- src/components/Navbar.tsx | 10 +++++----- src/styles/navbar.css | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 8671b1a..9fae3ca 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -1,5 +1,5 @@ import { NavLink } from 'react-router-dom'; -import {FaHome} from "react-icons/fa"; +import {FaArchive, FaHome, FaList, FaMicrophone, FaUser} from "react-icons/fa"; export default function Navbar() { const linkClasses = ({ isActive }: { isActive: boolean }) => @@ -19,16 +19,16 @@ export default function Navbar() { - Feed + - Record + - Archive + - Profile + ); diff --git a/src/styles/navbar.css b/src/styles/navbar.css index e4afdbf..fa2524c 100644 --- a/src/styles/navbar.css +++ b/src/styles/navbar.css @@ -3,7 +3,7 @@ nav { display: flex; justify-content: center; gap: 2rem; - background-color: #f3f4f6; + background-color: #6D5CC4; padding: 1rem 0; }