Create home page

This commit is contained in:
Aaron William Po
2023-04-18 00:04:16 -04:00
parent ef226caf70
commit 0663b78c00

View File

@@ -1,11 +1,28 @@
import Layout from '@/components/ui/Layout';
import { NextPage } from 'next';
import Head from 'next/head';
const Home: NextPage = () => {
return (
<>
<Head>
<title>The Biergarten App</title>
<meta name="description" content="Home" />
</Head>
<Layout>
<div></div>
<div className="flex h-full w-full items-center justify-center bg-primary">
<div className="w-9/12 text-center lg:w-8/12">
<h1 className="text-3xl font-bold md:text-4xl lg:text-5xl xl:text-8xl">
The Biergarten App
</h1>
<p className="mt-4 text-lg lg:text-2xl">
An app for beer lovers to share their favorite brews and breweries with
like-minded people online.
</p>
</div>
</div>
</Layout>
</>
);
};