diff --git a/src/app/globals.css b/src/app/globals.css index 515be44..45c8a28 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -131,4 +131,8 @@ body { body { @apply bg-background text-foreground; } +} + +@utility h-safe-area-inset-top { + height: env(safe-area-inset-top); } \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cf9047d..fa13d5d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -48,7 +48,7 @@ export default async function RootLayout({ -
+
{children} diff --git a/src/app/page.tsx b/src/app/page.tsx index e0d4b59..0222b3a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -262,60 +262,66 @@ export default function Home(): ReactNode { }; return ( -
-
- + <> +
+

Project Library

{projects && }
-
-
- - - - - - - - Create New Project - - - Fill in the information about your project. You can change it at any time later. - - -
- - - - - - - - - - - - -
-
+
+
+
-
- - {!isMobile && "Select Projects"} - - setSearch(e.target.value)} /> +
+
+
+ + + + + + + + Create New Project + + + Fill in the information about your project. You can change it at any time later. + + +
+ + + + + + + + + + + + +
+
+
+
+ + {!isMobile && "Select Projects"} + + setSearch(e.target.value)} /> +
+
+ {projects && projects.map((project) => )} +
+ {(projects != undefined && projects.length == 0) && ( +
+ +
+ )}
-
- {projects && projects.map((project) => )} -
- {(projects != undefined && projects.length == 0) && ( -
- -
- )} -
+ ); }; diff --git a/src/components/dashboard/Dashboard.tsx b/src/components/dashboard/Dashboard.tsx index 1098e70..fd1e3a6 100644 --- a/src/components/dashboard/Dashboard.tsx +++ b/src/components/dashboard/Dashboard.tsx @@ -32,7 +32,7 @@ const items: DashboardItem[] = [ export const Dashboard = (): ReactNode => { return ( - + diff --git a/src/components/ui/sidebar.tsx b/src/components/ui/sidebar.tsx index 86c7bdd..2f73f66 100644 --- a/src/components/ui/sidebar.tsx +++ b/src/components/ui/sidebar.tsx @@ -273,7 +273,7 @@ function SidebarTrigger({ }} {...props} > - {open ? : } + {open ? : } Toggle Sidebar )