Layout.tsx 458 B

12345678910111213141516171819
  1. import { FC } from "react";
  2. import Head from "next/head";
  3. import Nav from "./Nav";
  4. const Layout: FC = ({ children }) => (
  5. <>
  6. <Head>
  7. <title>Prisma Home Challenge</title>
  8. <meta name="description" content="My take on Prisma's Home Challenge" />
  9. <link rel="icon" href="/favicon.ico" />
  10. </Head>
  11. <Nav />
  12. <main className="mx-auto w-full max-w-screen-lg px-4 mt-24">
  13. {children}
  14. </main>
  15. </>
  16. );
  17. export default Layout;