diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ce80bad..0bb9623 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,5 +1,6 @@ import Image from "next/image"; import Link from "next/link"; +import Head from "next/head"; import { FaGithub } from "react-icons/fa"; function Header() { @@ -76,9 +77,32 @@ function Footer() { ); } -function Layout({ children }: { children: React.ReactNode }) { +function Layout({ children, title }: { children: React.ReactNode, title?: string }) { return (