'use client'; import React from 'react'; import {Box, Button, CircularProgress, Paper, Typography} from '@mui/material'; import {useAuth} from "@/src/auth/AuthProvider"; import {AuthGuard} from "@/src/auth/AuthGuard"; const HomePage: React.FC = () => { const {logout} = useAuth() const handleLogoutClick = async () => { await logout() } return ( ); }; export default HomePage;