import type { NextPage } from "next"; import Link from "next/link"; import Layout from "../components/Layout"; import { useAuth } from "../context/UserContext"; const Home: NextPage = () => { const { user, logout } = useAuth(); return (
{user ? ( <>

Welcome back, {user.name}!

You can change your settings in{" "} here

) : ( <>

Welcome!

Log in to get started

)}
); }; export default Home;