import React from 'react' import { useAuth } from '../contexts/AuthContext' interface LayoutProps { children: React.ReactNode } function Layout({ children }: LayoutProps) { const { user, logout } = useAuth() return (