|
1 | 1 | import Head from 'next/head';
|
2 | 2 |
|
3 | 3 | export default function About() {
|
4 |
| - return ( |
5 |
| - <> |
6 |
| - <Head> |
7 |
| - <title>about me</title> |
8 |
| - <meta name="description" content="about" /> |
9 |
| - </Head> |
| 4 | + return ( |
| 5 | + <> |
| 6 | + <Head> |
| 7 | + <title>about me</title> |
| 8 | + <meta name="description" content="about" /> |
| 9 | + </Head> |
10 | 10 |
|
11 |
| - <main className="flex gap-5 md:gap-10 md:mt-10 mt-5 flex-col md:flex-row"> |
12 |
| - <div className="self-center"> |
13 |
| - <img |
14 |
| - alt="profile picture" |
15 |
| - className="md:w-full w-36 rounded-full" |
16 |
| - src="https://res.cloudinary.com/practicaldev/image/fetch/s--a_5NFCrp--/c_fill,f_auto,fl_progressive,h_320,q_auto,w_320/https://dev-to-uploads.s3.amazonaws.com/uploads/user/profile_image/800212/baa42db6-3089-4e0c-8bbb-3bab71f4b318.jpg" |
17 |
| - /> |
18 |
| - </div> |
19 |
| - <div> |
20 |
| - <h1 className="font-title text-3xl font-bold">Welcome</h1> |
21 |
| - <p className="description text-gray-500"> |
22 |
| - Hello! I am a junior web developer looking for learning more about computer science in |
23 |
| - general. |
24 |
| - <br />I am primarily interested in backend and the several existing paradigms and |
25 |
| - languages available to make useful tools. My current technologies include languages such |
26 |
| - as <span className="active">Javascript, Typescript and Python</span>, along with |
27 |
| - libraries like <span className="active">React</span> and databases such as{' '} |
28 |
| - <span className="active">MySQL, PostgreSQL and MongoDB.</span> |
29 |
| - <br /> |
30 |
| - You can reach me at [email protected]. Also, take a look on my {' '} |
31 |
| - <a href="https://github.com/wrongbyte" className="active inline"> |
32 |
| - github |
33 |
| - </a> |
34 |
| - . |
35 |
| - </p> |
36 |
| - </div> |
37 |
| - </main> |
38 |
| - </> |
39 |
| - ); |
| 11 | + <main className="flex gap-5 md:gap-10 md:mt-10 mt-5 flex-col md:flex-row"> |
| 12 | + <div className="self-center"> |
| 13 | + <img |
| 14 | + alt="profile picture" |
| 15 | + className="md:w-full w-36 rounded-full" |
| 16 | + src="https://res.cloudinary.com/practicaldev/image/fetch/s--a_5NFCrp--/c_fill,f_auto,fl_progressive,h_320,q_auto,w_320/https://dev-to-uploads.s3.amazonaws.com/uploads/user/profile_image/800212/baa42db6-3089-4e0c-8bbb-3bab71f4b318.jpg" |
| 17 | + /> |
| 18 | + </div> |
| 19 | + <div> |
| 20 | + <h1 className="font-title text-3xl font-bold">Welcome</h1> |
| 21 | + <p className="description text-gray-500"> |
| 22 | + Hello! I am a junior web developer looking for learning more about |
| 23 | + computer science in general. |
| 24 | + <br />I am primarily interested in backend and the several existing |
| 25 | + paradigms and languages available to make useful tools. My current |
| 26 | + technologies include languages such as{' '} |
| 27 | + <span className="active">Javascript, Typescript and Python</span>, |
| 28 | + along with libraries like <span className="active">React</span> and |
| 29 | + databases such as{' '} |
| 30 | + <span className="active">MySQL, PostgreSQL and MongoDB.</span> |
| 31 | + <br /> |
| 32 | + You can reach me at [email protected]. Also, take a look on my {' '} |
| 33 | + <a href="https://github.com/wrongbyte" className="active inline"> |
| 34 | + github |
| 35 | + </a> |
| 36 | + . |
| 37 | + </p> |
| 38 | + </div> |
| 39 | + </main> |
| 40 | + </> |
| 41 | + ); |
40 | 42 | }
|
0 commit comments