mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
projects
This commit is contained in:
@ -16,7 +16,7 @@ export default function AuthSimpleLayout({ children, title, description }: Props
|
||||
<div className="flex flex-col items-center gap-4">
|
||||
<Link href={route('home')} className="flex flex-col items-center gap-2 font-medium">
|
||||
<div className="mb-1 flex h-9 w-9 items-center justify-center rounded-md">
|
||||
<AppLogoIcon className="size-9 fill-current text-[var(--foreground)] dark:text-white" />
|
||||
<AppLogoIcon className="size-9 rounded-sm fill-current text-[var(--foreground)] dark:text-white" />
|
||||
</div>
|
||||
<span className="sr-only">{title}</span>
|
||||
</Link>
|
||||
|
@ -16,7 +16,7 @@ import {
|
||||
} from 'lucide-react';
|
||||
import { ReactNode } from 'react';
|
||||
import { Server } from '@/types/server';
|
||||
import ServerHeader from '@/pages/servers/partials/header';
|
||||
import ServerHeader from '@/pages/servers/components/header';
|
||||
import Layout from '@/layouts/app/layout';
|
||||
|
||||
export default function ServerLayout({ server, children }: { server: Server; children: ReactNode }) {
|
||||
@ -96,7 +96,7 @@ export default function ServerLayout({ server, children }: { server: Server; chi
|
||||
<Layout secondNavItems={sidebarNavItems} secondNavTitle={server.name}>
|
||||
<ServerHeader server={server} />
|
||||
|
||||
<div className="p-4">{children}</div>
|
||||
<div>{children}</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ const sidebarNavItems: NavItem[] = [
|
||||
},
|
||||
{
|
||||
title: 'Projects',
|
||||
href: '/',
|
||||
href: route('projects'),
|
||||
icon: ListIcon,
|
||||
},
|
||||
];
|
||||
|
Reference in New Issue
Block a user