import { redirect } from 'next/navigation'; import { auth } from '@/auth'; import Image from 'next/image'; import { Montserrat } from 'next/font/google'; const montserrat = Montserrat({ subsets: ['latin'], weight: ['200', '500', '600'], }); export default async function AuthLayout({ children, }: { children: React.ReactNode; }) { const session = await auth(); if (session?.user) redirect('/dashboard'); return (
{/* Logo / Brand */}
Logo
TWO TALES vfx review
{children}
); }