-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
40 lines (35 loc) · 1.32 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import Head from "next/head";
export default function Home() {
return (
<div className='flex flex-col items-center justify-center min-h-screen py-2'>
<Head>
<title>jammer</title>
<link rel='icon' href='/favicon.ico' />
</Head>
<main className='flex flex-col items-center justify-center flex-1 w-full px-20 text-center'>
<h1 className='text-6xl font-bold'>jammer</h1>
<p className='mt-3 text-2xl'>
marketplace for buying and selling music equipment
</p>
<div className='flex flex-wrap items-center justify-around max-w-4xl mt-6 sm:w-full'>
<a
href='/equipment'
className='p-6 mt-6 text-left border shadow-sm w-96 hover:text-pink-600 focus:text-pink-600'
>
<h3 className='text-2xl font-bold'> Music gear for sale</h3>
<p className='mt-4 text-xl'>Find rad gear 🎸</p>
</a>
<a
href='/list'
className='p-6 mt-6 text-left border shadow-sm w-96 hover:text-pink-600 focus:text-pink-600'
>
<h3 className='text-2xl font-bold'>Sell your music gear</h3>
<p className='mt-4 text-xl'>
Make some 💰 selling your used music equipment
</p>
</a>
</div>
</main>
</div>
);
}