mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-02 03:38:22 +00:00
chore: update package.json to add millify dependency and remove unnecessary newline
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 9m3s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 9m3s
This commit is contained in:
@ -37,12 +37,6 @@ export async function ApplicationLayout({
|
||||
<div className="flex items-center gap-2 ">
|
||||
<SidebarTrigger className="-ml-1" />
|
||||
<Separator orientation="vertical" className="mr-2 h-4" />
|
||||
<div className="text-xs font-mono px-2 p-1 rounded-md bg-green-500/10 text-green-900 dark:text-green-400">
|
||||
Welcome,{" "}
|
||||
<span className="font-semibold">
|
||||
{session?.user?.first_name} {session?.user?.last_name}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-2">
|
||||
@ -51,6 +45,12 @@ export async function ApplicationLayout({
|
||||
<AccountPopover />
|
||||
</div>
|
||||
</header>
|
||||
<div className="text-sm font-mono px-2 p-1 bg-green-500/10 text-green-900 dark:text-green-400">
|
||||
Logged in as,{" "}
|
||||
<span className="font-semibold">
|
||||
{session?.user?.first_name} {session?.user?.last_name}
|
||||
</span>
|
||||
</div>
|
||||
<div className="p-4 flex flex-col flex-1">{children}</div>
|
||||
</SidebarInset>
|
||||
</SidebarProvider>
|
||||
|
Reference in New Issue
Block a user