diff --git a/compass/app/auth/login/page.tsx b/compass/app/auth/login/page.tsx
index a420d32..ccb8b2c 100644
--- a/compass/app/auth/login/page.tsx
+++ b/compass/app/auth/login/page.tsx
@@ -51,7 +51,7 @@ export default function Page() {
height={91}
/>
-
Login
+ Login
diff --git a/compass/components/resource/Sidebar.tsx b/compass/components/resource/Sidebar.tsx
index f139b7d..97e59d4 100644
--- a/compass/components/resource/Sidebar.tsx
+++ b/compass/components/resource/Sidebar.tsx
@@ -1,6 +1,7 @@
import React from 'react';
import { HomeIcon, ChevronDoubleLeftIcon, BookmarkIcon, ClipboardIcon, BookOpenIcon } from '@heroicons/react/24/solid';
import { SidebarItem } from './SidebarItem';
+import { UserProfile } from './UserProfile';
interface SidebarProps {
setIsSidebarOpen: React.Dispatch
>;
@@ -24,13 +25,7 @@ const Sidebar: React.FC = ({ setIsSidebarOpen }) => {
{/* user + logout button */}
-
-
- Compass Center
- cssgunc@gmail.com
-
-
-
+
{/* navigation menu */}
diff --git a/compass/components/resource/UserProfile.tsx b/compass/components/resource/UserProfile.tsx
new file mode 100644
index 0000000..0471596
--- /dev/null
+++ b/compass/components/resource/UserProfile.tsx
@@ -0,0 +1,11 @@
+export const UserProfile = () => {
+ return (
+
+
+ Compass Center
+ cssgunc@gmail.com
+
+
+
+ )
+}
\ No newline at end of file