- import type { NextPage } from "next";
- import Layout from "../components/Layout";
- const Home: NextPage = () => {
- return (
- <Layout>
- <div className="">
- <h1 className="">Welcome!</h1>
- <p className="">Log in to get started</p>
- </div>
- </Layout>
- );
- };
- export default Home;
|