|
1 | | -import Head from 'next/head' |
2 | | -import styles from 'styles/Home.module.css' |
| 1 | +import styles from '../styles/Home.module.css' |
3 | 2 |
|
4 | 3 | export default function Home() { |
5 | 4 | return ( |
6 | 5 | <div className={styles.container}> |
7 | | - <Head> |
8 | | - <title>Create Next App</title> |
9 | | - <link rel="icon" href="/favicon.ico" /> |
10 | | - </Head> |
11 | | - |
12 | | - <main className={styles.main}> |
13 | | - <h1 className={styles.title}> |
14 | | - Welcome to <a href="https://nextjs.org">Next.js!</a> |
15 | | - </h1> |
16 | | - |
17 | | - <p className={styles.description}> |
18 | | - Get started by editing{' '} |
19 | | - <code className={styles.code}>pages/index.js</code> |
20 | | - </p> |
21 | | - |
22 | | - <div className={styles.grid}> |
23 | | - <a href="https://nextjs.org/docs" className={styles.card}> |
24 | | - <h3>Documentation →</h3> |
25 | | - <p>Find in-depth information about Next.js features and API.</p> |
26 | | - </a> |
27 | | - |
28 | | - <a href="https://nextjs.org/learn" className={styles.card}> |
29 | | - <h3>Learn →</h3> |
30 | | - <p>Learn about Next.js in an interactive course with quizzes!</p> |
31 | | - </a> |
32 | | - |
33 | | - <a |
34 | | - href="https://github.com/vercel/next.js/tree/master/examples" |
35 | | - className={styles.card} |
36 | | - > |
37 | | - <h3>Examples →</h3> |
38 | | - <p>Discover and deploy boilerplate example Next.js projects.</p> |
39 | | - </a> |
40 | | - |
41 | | - <a |
42 | | - href="https://vercel.com/import?filter=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app" |
43 | | - className={styles.card} |
44 | | - > |
45 | | - <h3>Deploy →</h3> |
46 | | - <p> |
47 | | - Instantly deploy your Next.js site to a public URL with Vercel. |
48 | | - </p> |
49 | | - </a> |
50 | | - </div> |
51 | | - </main> |
52 | | - |
53 | | - <footer className={styles.footer}> |
54 | | - <a |
55 | | - href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app" |
56 | | - target="_blank" |
57 | | - rel="noopener noreferrer" |
58 | | - > |
59 | | - Powered by{' '} |
60 | | - <img src="/vercel.svg" alt="Vercel Logo" className={styles.logo} /> |
61 | | - </a> |
62 | | - </footer> |
| 6 | + Hello World! |
63 | 7 | </div> |
64 | 8 | ) |
65 | 9 | } |
0 commit comments