|
1 |
| -import Head from "next/head"; |
2 | 1 | import Link from "next/link";
|
3 | 2 | import styles from "../styles/Home.module.scss";
|
4 | 3 |
|
5 | 4 | export default function Home() {
|
6 |
| - return ( |
7 |
| - <div> |
8 |
| - <Head> |
9 |
| - <title>Web Dev Path</title> |
10 |
| - <link rel="icon" href="/favicon.ico" /> |
11 |
| - </Head> |
12 |
| - <h1 className={styles.title}>< Web Dev wannabe? /></h1> |
13 |
| - <div className={styles.description}> |
14 |
| - <p> |
15 |
| - Hold our hand and enjoy the road to learn how to start a new project, |
16 |
| - the magic behind Github while working in a team environment, and much |
17 |
| - more... |
18 |
| - </p> |
19 |
| - </div> |
20 |
| - <hr className={styles.divider} /> |
| 5 | + return ( |
| 6 | + <div> |
| 7 | + <h1 className={styles.title}>< Web Dev wannabe? /></h1> |
| 8 | + <div className={styles.description}> |
| 9 | + <p> |
| 10 | + Hold our hand and enjoy the road to learn how to start a new project, |
| 11 | + the magic behind Github while working in a team environment, and much |
| 12 | + more... |
| 13 | + </p> |
| 14 | + </div> |
| 15 | + <hr className={styles.divider} /> |
21 | 16 |
|
22 |
| - <h2 className={styles.centerText}> |
23 |
| - Would you answer "yes" to any of these questions? |
24 |
| - </h2> |
| 17 | + <h2 className={styles.centerText}> |
| 18 | + Would you answer "yes" to any of these questions? |
| 19 | + </h2> |
25 | 20 |
|
26 |
| - <div className={styles.grid}> |
27 |
| - <div className={styles.card}> |
28 |
| - <p>Are you learning web development and need mentorship?</p> |
29 |
| - </div> |
30 |
| - <div className={styles.card}> |
31 |
| - <p>Are you an experienced web dev who wants to become a mentor?</p> |
32 |
| - </div> |
33 |
| - <div className={styles.card}> |
34 |
| - <p> |
35 |
| - Are you a non-profit organization who needs help with a web project? |
36 |
| - </p> |
37 |
| - </div> |
38 |
| - <div className={styles.card}> |
39 |
| - <p> |
40 |
| - Are you a web dev looking for help or a code buddy for a project? |
41 |
| - </p> |
42 |
| - </div> |
43 |
| - </div> |
| 21 | + <div className={styles.grid}> |
| 22 | + <div className={styles.card}> |
| 23 | + <p>Are you learning web development and need mentorship?</p> |
| 24 | + </div> |
| 25 | + <div className={styles.card}> |
| 26 | + <p>Are you an experienced web dev who wants to become a mentor?</p> |
| 27 | + </div> |
| 28 | + <div className={styles.card}> |
| 29 | + <p> |
| 30 | + Are you a non-profit organization who needs help with a web project? |
| 31 | + </p> |
| 32 | + </div> |
| 33 | + <div className={styles.card}> |
| 34 | + <p> |
| 35 | + Are you a web dev looking for help or a code buddy for a project? |
| 36 | + </p> |
| 37 | + </div> |
| 38 | + </div> |
44 | 39 |
|
45 |
| - <div className={`${styles.learn_more} ${styles.centerText}`}> |
46 |
| - <h3> |
47 |
| - If so, you are probably in the right place and should learn more about |
48 |
| - us |
49 |
| - </h3> |
50 |
| - <button className={styles.button}> |
51 |
| - <Link href="/about-us">Learn More</Link> |
52 |
| - </button> |
53 |
| - </div> |
54 |
| - </div> |
55 |
| - ); |
| 40 | + <div className={`${styles.learn_more} ${styles.centerText}`}> |
| 41 | + <h3> |
| 42 | + If so, you are probably in the right place and should learn more about |
| 43 | + us |
| 44 | + </h3> |
| 45 | + <button className={styles.button}> |
| 46 | + <Link href="/about-us">Learn More</Link> |
| 47 | + </button> |
| 48 | + </div> |
| 49 | + </div> |
| 50 | + ); |
56 | 51 | }
|
0 commit comments