import { useUser } from "@auth0/nextjs-auth0/client"; import Layout from "../components/layout"; import { Grid, Button, Typography, TextField, Box } from "@mui/material"; const Settings = () => { const { user, isLoading } = useUser(); return ( Settings ); }; export default Settings;