From bf9bf35b65047cb008e197e3623479979f78906a Mon Sep 17 00:00:00 2001 From: Roy Dumblauskas Date: Sun, 9 Nov 2025 01:37:19 -0600 Subject: [PATCH] don't make the nav bar with flex quantities --- frontend/src/components/Navbar.tsx | 5 +---- frontend/src/main.tsx | 2 +- frontend/src/pages/Home.tsx | 1 + 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/Navbar.tsx b/frontend/src/components/Navbar.tsx index 1389ede..a9819de 100644 --- a/frontend/src/components/Navbar.tsx +++ b/frontend/src/components/Navbar.tsx @@ -8,7 +8,6 @@ export default function Navbar() { component={Link} to="/" variant="outlined" - className="flex flex-1" > Home @@ -17,11 +16,9 @@ export default function Navbar() { component={Link} to="/articleList" variant="outlined" - className="flex flex-1" > - Article + Articles -
); }; diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx index 5dab340..9451c44 100644 --- a/frontend/src/main.tsx +++ b/frontend/src/main.tsx @@ -13,7 +13,7 @@ createRoot(document.getElementById('root')!).render( } /> - } /> + } /> } /> diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index 4168174..a6ba45b 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -1,4 +1,5 @@ export default function Home() { + return (

Home