import type { NextPage } from "next"; import Layout from "../components/Layout"; const Home: NextPage = () => { return (

Welcome!

Log in to get started

); }; export default Home;