This commit is contained in:
Alexis Werefox 2021-10-20 22:38:13 +00:00
parent cea5bfe55a
commit c913a91269

View file

@ -1,16 +1,17 @@
import Head from 'next/head'
import Image from 'next/image'
export default function Home() {
return (
<div>
<div className="p-4 min-h-screen bg-werefox-grey-dark font-nerd">
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<div>
<p>Test</p>
<div className="space-y-4 text-center text-xl text-werefox-pink">
<div className="p-4 rounded-lg bg-werefox-grey ring-4 ring-werefox-blue">
<p>Oh hi I'm writing things and they're displaying on the browser preview</p>
</div>
</div>
</div>
)