import {LayoutAdmin} from "@/components/layout"; import Image from 'next/image'; import {currentUser, requiredCurrentUser} from "@/auth/current-user"; import {redirect} from "next/navigation"; export default async function Layout({children}: { children: React.ReactNode }) { const user = await currentUser() if(user){ redirect('/dashboard') } return (
{children}
{/*
*/} {/* */} {/*
*/} {/* Logo Portabase*/} {/*
*/} {/*
*/}
) }