import type { ReactNode } from 'react' import { AuthBrand } from '~/features/auth/auth-brand' export default function AuthLayout({ children }: { children: ReactNode }) { return (
{children}
) }