diff --git a/frontend/src/components/Navigation/Navbar/Navbar.tsx b/frontend/src/components/Navigation/Navbar/Navbar.tsx index 0774055d..25284a51 100644 --- a/frontend/src/components/Navigation/Navbar/Navbar.tsx +++ b/frontend/src/components/Navigation/Navbar/Navbar.tsx @@ -1,7 +1,8 @@ export function Navbar(props: { title?: string }) { return ( <> -
+
+ < div className="flex h-16 items-center justify-between bg-[#333333] px-16 w-[50%] mt-3 rounded-3xl ">
@@ -15,6 +16,7 @@ export function Navbar(props: { title?: string }) { Welcome {props.title || 'User'}
+
); diff --git a/frontend/src/components/Navigation/Sidebar/Sidebar.tsx b/frontend/src/components/Navigation/Sidebar/Sidebar.tsx index 01928663..54d9ec4e 100644 --- a/frontend/src/components/Navigation/Sidebar/Sidebar.tsx +++ b/frontend/src/components/Navigation/Sidebar/Sidebar.tsx @@ -20,7 +20,7 @@ function Sidebar() { }`; return ( -
+
- Ai tagging + AI Tagging diff --git a/frontend/src/layout/main.tsx b/frontend/src/layout/main.tsx index 8f1a443b..9302853d 100644 --- a/frontend/src/layout/main.tsx +++ b/frontend/src/layout/main.tsx @@ -7,7 +7,7 @@ const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
-
+
{children}
diff --git a/frontend/src/pages/SettingsPage/Settings.tsx b/frontend/src/pages/SettingsPage/Settings.tsx index f3e1ae3b..6cdc187a 100644 --- a/frontend/src/pages/SettingsPage/Settings.tsx +++ b/frontend/src/pages/SettingsPage/Settings.tsx @@ -26,12 +26,12 @@ const Settings: React.FC = () => { return (
-
+

Current Folder Path

-
+
{currentPath && <>{currentPath}}
@@ -39,7 +39,7 @@ const Settings: React.FC = () => {