import Navbar from '@/components/layout/Navbar'; import { type PropsWithChildren } from 'react'; interface AuthLayoutProps { name?: string; title?: string; description?: string; } export default function AuthSimpleLayout({ children, title, description, }: PropsWithChildren) { return ( <>
{/*
{title} */}

{title}

{description}

{children}
); }