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

17 lines
410 B
JavaScript
Raw Normal View History

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