From 0663b78c001f2a3487fffe8a12ebb9e3c67daf46 Mon Sep 17 00:00:00 2001 From: Aaron William Po Date: Tue, 18 Apr 2023 00:04:16 -0400 Subject: [PATCH] Create home page --- src/pages/index.tsx | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 3fe714a..3d42234 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,11 +1,28 @@ import Layout from '@/components/ui/Layout'; import { NextPage } from 'next'; +import Head from 'next/head'; const Home: NextPage = () => { return ( - -
-
+ <> + + The Biergarten App + + + +
+
+

+ The Biergarten App +

+

+ An app for beer lovers to share their favorite brews and breweries with + like-minded people online. +

+
+
+
+ ); };