diff --git a/pages/_app.tsx b/pages/_app.tsx index 1750b19..c201566 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,5 +1,18 @@ import type { AppProps } from "next/app"; +import Head from "next/head"; export default function LanyardReadMe({ Component, pageProps }: AppProps) { - return ; + return ( + <> + + + + + + + + + + + ); }