mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
Create home page
This commit is contained in:
@@ -1,11 +1,28 @@
|
||||
import Layout from '@/components/ui/Layout';
|
||||
import { NextPage } from 'next';
|
||||
import Head from 'next/head';
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return (
|
||||
<Layout>
|
||||
<div></div>
|
||||
</Layout>
|
||||
<>
|
||||
<Head>
|
||||
<title>The Biergarten App</title>
|
||||
<meta name="description" content="Home" />
|
||||
</Head>
|
||||
<Layout>
|
||||
<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>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user