import {ReactNode} from 'react' import Image from 'next/image' import logo from '@/assets/logo.webp' import Profile from '@/app/admin/_server/profile' import Wrap from '@/components/wrap' import {merge} from '@/lib/utils' import Link from 'next/link' export type DashboardLayoutProps = { children: ReactNode } export default async function DashboardLayout(props: DashboardLayoutProps) { return (
{props.label}
) } function NavItem(props: { href: string icon?: ReactNode label: string }) { return ( {props.icon} {props.label} ) }