Personal-site/pages/index.js

13 lines
239 B
JavaScript
Raw Permalink Normal View History

2020-06-14 09:06:49 +00:00
import Head from "next/head";
2020-06-14 08:40:51 +00:00
export default function Home() {
return (
<div className="container">
<Head>
<title>Create Next App</title>
<link rel="icon" href="/favicon.ico" />
</Head>
</div>
2020-06-14 09:06:49 +00:00
);
2020-06-14 08:40:51 +00:00
}