|
1 | | -import avatar from '../assets/Avatar500.png'; |
| 1 | +import avatar from "../assets/Avatar500.png"; |
| 2 | +import PostList from "./PostList"; |
2 | 3 |
|
3 | 4 | function Home() { |
4 | 5 | return ( |
5 | | - <section className="mx-auto w-4/5 py-24 text-gray-200"> |
6 | | - <div className="flex justify-between items-center gap-3"> |
7 | | - <div className="flex-col"> |
8 | | - <h1 className="text-5xl font-light mb-6 text-brand">About</h1> |
| 6 | + <> |
| 7 | + <section className="mx-auto w-11/12 md:w-4/5 py-20 text-gray-200"> |
| 8 | + <div className="grid md:grid-cols-4 gap-6 items-center"> |
| 9 | + <div className="md:col-span-3 order-2 md:order-1"> |
| 10 | + <h1 className="text-4xl md:text-5xl font-light mb-6 text-brand"> |
| 11 | + About |
| 12 | + </h1> |
9 | 13 |
|
10 | | - <p className="text-lg text-gray-400 leading-relaxed mb-6"> |
11 | | - I enjoy making stuff. I work with systems languages like{" "} |
12 | | - <span className="text-white font-medium">C++</span>,{" "} |
13 | | - <span className="text-white font-medium">C#</span>,{" "} |
14 | | - <span className="text-white font-medium">Kotlin</span>,{" "} |
15 | | - <span className="text-white font-medium">Java</span>... |
16 | | - I also do web stuff sometimes using{" "} |
17 | | - <span className="text-white font-medium">JavaScript</span>,{" "} |
18 | | - <span className="text-white font-medium">PHP</span>,{" "} |
19 | | - <span className="text-white font-medium">Laravel</span>,{" "} |
20 | | - and <span className="text-white font-medium">Tailwind</span> when I feel like it. |
21 | | - </p> |
| 14 | + <p className="text-base md:text-lg text-gray-400 leading-relaxed mb-6"> |
| 15 | + I enjoy making stuff. I work with languages like{" "} |
| 16 | + <span className="text-white font-medium">C++</span>,{" "} |
| 17 | + <span className="text-white font-medium">C#</span>,{" "} |
| 18 | + <span className="text-white font-medium">Kotlin</span>,{" "} |
| 19 | + <span className="text-white font-medium">Java</span>... I also do web |
| 20 | + stuff and i like to use {" "} |
| 21 | + <span className="text-white font-medium">JS</span>,{" "} |
| 22 | + <span className="text-white font-medium">PHP</span>,{" "} |
| 23 | + <span className="text-white font-medium">Laravel</span>, or{" "} |
| 24 | + <span className="text-white font-medium">Tailwind</span>. |
| 25 | + </p> |
22 | 26 |
|
23 | | - <p className="text-lg text-gray-400 leading-relaxed"> |
24 | | - I've done some <span className="text-white font-medium">web dev</span>,{" "} |
25 | | - a bit of <span className="text-white font-medium">backend</span>, and I also like |
26 | | - messing with <span className="text-white font-medium">software architecture</span> — still getting the hang of it though. |
27 | | - I mostly just like making things that look nice, write code that doesn't explode after a month, |
28 | | - and code that goes *vroom vroom*. |
29 | | - </p> |
30 | | - </div> |
| 27 | + <p className="text-base md:text-lg text-gray-400 leading-relaxed"> |
| 28 | + I've done some web dev, a bit of backend, and I also like to think in |
| 29 | + software architecture. I mostly just like making |
| 30 | + things that look nice, write code that doesn't explode after a month, |
| 31 | + and code that goes *vroom vroom*. |
| 32 | + </p> |
| 33 | + </div> |
31 | 34 |
|
32 | | - <div className="flex-col"> |
33 | | - <img |
34 | | - src={avatar} |
35 | | - alt="Avatar" |
36 | | - className="rounded-full" |
37 | | - /> |
38 | | - <div className="flex justify-center"> |
39 | | - <small className="mt-3 text-gray-400 italic">Art by Pablo Tavares</small> |
| 35 | + <div className="md:col-span-1 order-1 md:order-2 flex flex-col items-center mb-8 md:mb-0"> |
| 36 | + <img |
| 37 | + src={avatar} |
| 38 | + alt="Avatar" |
| 39 | + className="w-40 h-40 md:w-56 md:h-56 rounded-full border border-white/10 shadow-md object-cover" |
| 40 | + /> |
| 41 | + <a |
| 42 | + className="mt-3 text-center text-gray-400 italic hover:text-gray-300 transition" |
| 43 | + href="https://x.com/Pablowsinistro2" |
| 44 | + target="_blank" |
| 45 | + > |
| 46 | + Art by Pablo Tavares |
| 47 | + </a> |
40 | 48 | </div> |
41 | 49 | </div> |
42 | | - </div> |
43 | | - </section> |
| 50 | + </section> |
| 51 | + <PostList /> |
| 52 | + </> |
44 | 53 | ); |
45 | 54 | } |
46 | 55 |
|
|
0 commit comments