mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
Merge pull request #27 from aaronpo97/create-home-page
Create home page
This commit is contained in:
@@ -1,11 +1,28 @@
|
|||||||
import Layout from '@/components/ui/Layout';
|
import Layout from '@/components/ui/Layout';
|
||||||
import { NextPage } from 'next';
|
import { NextPage } from 'next';
|
||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
const Home: NextPage = () => {
|
const Home: NextPage = () => {
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<>
|
||||||
<div></div>
|
<Head>
|
||||||
</Layout>
|
<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