From f54e6daf3599f1c88ca29dd040539eb64fba41db Mon Sep 17 00:00:00 2001 From: parth4apple <72187062+parth4apple@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:44:45 -0800 Subject: [PATCH] cleanup --- frontend/src/components/Navigation.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Navigation.tsx b/frontend/src/components/Navigation.tsx index 6b93e2de..97baf512 100644 --- a/frontend/src/components/Navigation.tsx +++ b/frontend/src/components/Navigation.tsx @@ -19,17 +19,22 @@ type LinkProps = { }; // the logo and company name component -const Logo = ({ setShelf, isMobile }: LinkProps) => { +const Logo = ({ setShelf, isMobile, black }: LinkProps & { black?: boolean }) => { return ( { if (isMobile) setShelf(false); }} - className="flex items-center justify-between gap-2 pl-8 pr-8 max-sm:w-fit max-sm:justify-normal sm:max-lg:p-0" + className="flex items-center gap-2 pl-8 pr-8 max-sm:w-fit max-sm:justify-normal sm:max-lg:p-0" > company logo -

PLANT IT AGAIN

+

+ PLANT IT AGAIN +

); }; @@ -90,7 +95,7 @@ function Navigation({ children }: { children: React.ReactNode }) { height={24} />
- +