Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit f3e8a38

Browse files
committed
refactor: cleanup home page and styles
1 parent 56a6fe8 commit f3e8a38

File tree

3 files changed

+12
-211
lines changed

3 files changed

+12
-211
lines changed

pages/index.tsx

Lines changed: 9 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,24 @@
1-
import type { NextPage } from 'next'
1+
import type {NextPage} from 'next'
22
import Head from 'next/head'
33
import Image from 'next/image'
4-
import styles from '../styles/Home.module.css'
54

65
const Home: NextPage = () => {
76
return (
8-
<div className={styles.container}>
7+
<>
98
<Head>
10-
<title>Create Next App</title>
11-
<meta name="description" content="Generated by create next app" />
12-
<link rel="icon" href="/favicon.ico" />
9+
<title>Lil Nouns Pics</title>
10+
<meta name="description" content="Select and download a Lil Nouns picture in various sizes and formats."/>
11+
<link rel="icon" href="/favicon.ico"/>
1312
</Head>
1413

15-
<main className={styles.main}>
16-
<h1 className={styles.title}>
17-
Welcome to <a href="https://nextjs.org">Next.js!</a>
18-
</h1>
14+
<main>
1915

20-
<p className={styles.description}>
21-
Get started by editing{' '}
22-
<code className={styles.code}>pages/index.tsx</code>
23-
</p>
24-
25-
<div className={styles.grid}>
26-
<a href="https://nextjs.org/docs" className={styles.card}>
27-
<h2>Documentation &rarr;</h2>
28-
<p>Find in-depth information about Next.js features and API.</p>
29-
</a>
30-
31-
<a href="https://nextjs.org/learn" className={styles.card}>
32-
<h2>Learn &rarr;</h2>
33-
<p>Learn about Next.js in an interactive course with quizzes!</p>
34-
</a>
35-
36-
<a
37-
href="https://github.com/vercel/next.js/tree/canary/examples"
38-
className={styles.card}
39-
>
40-
<h2>Examples &rarr;</h2>
41-
<p>Discover and deploy boilerplate example Next.js projects.</p>
42-
</a>
43-
44-
<a
45-
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
46-
className={styles.card}
47-
>
48-
<h2>Deploy &rarr;</h2>
49-
<p>
50-
Instantly deploy your Next.js site to a public URL with Vercel.
51-
</p>
52-
</a>
53-
</div>
5416
</main>
5517

56-
<footer className={styles.footer}>
57-
<a
58-
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
59-
target="_blank"
60-
rel="noopener noreferrer"
61-
>
62-
Powered by{' '}
63-
<span className={styles.logo}>
64-
<Image src="/vercel.svg" alt="Vercel Logo" width={72} height={16} />
65-
</span>
66-
</a>
18+
<footer>
19+
6720
</footer>
68-
</div>
21+
</>
6922
)
7023
}
7124

styles/Home.module.css

Lines changed: 0 additions & 129 deletions
This file was deleted.

styles/globals.css

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,3 @@
1-
html,
2-
body {
3-
padding: 0;
4-
margin: 0;
5-
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6-
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7-
}
8-
9-
a {
10-
color: inherit;
11-
text-decoration: none;
12-
}
13-
14-
* {
15-
box-sizing: border-box;
16-
}
17-
18-
@media (prefers-color-scheme: dark) {
19-
html {
20-
color-scheme: dark;
21-
}
22-
body {
23-
color: white;
24-
background: black;
25-
}
26-
}
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

0 commit comments

Comments
 (0)