'use client'; import React from 'react'; import { useAuth } from '@/lib/auth'; import LoginPage from '@/app/auth/login/page'; import { Button } from '@/components/ui/button'; const MainLayout = ({ children }: { children: React.ReactNode }) => { const auth = useAuth(); if (!auth.isAuthenticated) { return ; } return (
{children}
); }; export default MainLayout;