index.tsx 308 B

123456789101112131415
  1. import type { NextPage } from "next";
  2. import Layout from "../components/Layout";
  3. const Home: NextPage = () => {
  4. return (
  5. <Layout>
  6. <div className="">
  7. <h1 className="">Welcome!</h1>
  8. <p className="">Log in to get started</p>
  9. </div>
  10. </Layout>
  11. );
  12. };
  13. export default Home;