werefox-cafe/src/info/pages/index.js

17 lines
410 B
JavaScript

import Head from "next/head";
import Link from "next/link";
export default function Home() {
return (
<div className="min-h-screen bg-werefox-grey-light dark:bg-werefox-grey-dark">
<Head>
<title>About A Werefox</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<h1 className="text-5xl text-center text-werefox-blue">
I'm Gay
</h1>
</div>
);
}