|
1 | 1 | --- |
2 | 2 | import Card from "../global/Card.astro"; |
3 | | -import Line from "../global/NetworkLine.astro"; |
4 | | -import Skill from "./Skill.astro"; |
5 | 3 | --- |
6 | 4 |
|
7 | 5 | <div class="flex h-fit flex-col items-center justify-center pt-20"> |
8 | 6 | <h1 class="mb-5 text-center text-5xl">Skills</h1> |
9 | 7 |
|
10 | | - <div |
11 | | - class="flex w-[90%] flex-col items-start justify-center gap-x-10 md:w-[600px] lg:w-2/3 lg:flex-row" |
12 | | - > |
13 | | - <div |
14 | | - class="flex flex-col items-start justify-start gap-2 px-5 py-2 text-left" |
| 8 | + <div class="grid w-[90%] grid-cols-3 gap-x-10 md:w-[600px] lg:w-2/3"> |
| 9 | + <Card |
| 10 | + shadowColor="rgb(4, 57, 57)" |
| 11 | + className="bg-gradient-to-br from-[#101010] to-[#202020]" |
15 | 12 | > |
16 | | - <div> |
17 | | - <div class="text-xl font-bold">Frontend</div> |
18 | | - <div |
19 | | - class="flex flex-row flex-wrap items-center justify-start gap-2 text-sm" |
20 | | - > |
21 | | - <div>Typescript,</div> |
22 | | - <div>React,</div> |
23 | | - <div>TailwindCSS</div> |
| 13 | + <div |
| 14 | + class="flex flex-col items-start justify-start gap-2 px-5 py-2 text-left" |
| 15 | + > |
| 16 | + <div> |
| 17 | + <div class="text-xl font-bold">Frontend</div> |
| 18 | + <div |
| 19 | + class="flex flex-row flex-wrap items-center justify-start gap-2 text-sm" |
| 20 | + > |
| 21 | + <div>Typescript,</div> |
| 22 | + <div>React,</div> |
| 23 | + <div>TailwindCSS</div> |
| 24 | + </div> |
24 | 25 | </div> |
25 | | - </div> |
26 | | - <div> |
27 | | - <div class="text-xl font-bold">Backend</div> |
28 | | - <div |
29 | | - class="flex flex-row flex-wrap items-center justify-start gap-x-2 text-sm" |
30 | | - > |
31 | | - <div>Node.js,</div> |
32 | | - <div>PHP,</div> |
33 | | - <div>Go,</div> |
34 | | - <div>Rust</div> |
| 26 | + <div> |
| 27 | + <div class="text-xl font-bold">Backend</div> |
| 28 | + <div |
| 29 | + class="flex flex-row flex-wrap items-center justify-start gap-x-2 text-sm" |
| 30 | + > |
| 31 | + <div>Node.js,</div> |
| 32 | + <div>PHP,</div> |
| 33 | + <div>Go,</div> |
| 34 | + <div>Rust</div> |
| 35 | + </div> |
35 | 36 | </div> |
36 | | - </div> |
37 | | - <div> |
38 | | - <div class="text-xl font-bold">Tools</div> |
39 | | - <div |
40 | | - class="flex flex-row flex-wrap items-center justify-start gap-x-2 text-sm" |
41 | | - > |
42 | | - <div>Git,</div> |
43 | | - <div>Github,</div> |
44 | | - <div>Codeberg,</div> |
45 | | - <div>Visual Studio Code</div> |
| 37 | + <div> |
| 38 | + <div class="text-xl font-bold">Tools</div> |
| 39 | + <div |
| 40 | + class="flex flex-row flex-wrap items-center justify-start gap-x-2 text-sm" |
| 41 | + > |
| 42 | + <div>Git,</div> |
| 43 | + <div>Github,</div> |
| 44 | + <div>Codeberg,</div> |
| 45 | + <div>Visual Studio Code</div> |
| 46 | + </div> |
46 | 47 | </div> |
47 | 48 | </div> |
48 | | - </div> |
49 | | - <div class="w-full px-5 py-2 lg:w-1/2"> |
50 | | - <div class="mb-6"> |
51 | | - <p class="mb-3"> |
52 | | - I primarily work on websites on both the frontend and the |
53 | | - backend. |
54 | | - </p> |
55 | | - <p class="mb-3"> |
56 | | - Other projects I work on include Python scripts, Discord |
57 | | - bots, and Streamer.bot C# scripts. |
58 | | - </p> |
59 | | - <p class="mb-3"> |
60 | | - Full resume available upon requests via |
| 49 | + </Card> |
| 50 | + <Card |
| 51 | + shadowColor="rgb(4, 57, 57)" |
| 52 | + className="col-span-2 bg-gradient-to-br from-[#202020] to-[#101010]" |
| 53 | + > |
| 54 | + <div class="w-full px-5 py-5 lg:w-4/5"> |
| 55 | + <div class="mb-6"> |
| 56 | + <p class="mb-3"> |
| 57 | + I primarily work on websites on both the frontend and |
| 58 | + the backend. |
| 59 | + </p> |
| 60 | + <p class="mb-3"> |
| 61 | + Other projects I work on include Python scripts, Discord |
| 62 | + bots, and Streamer.bot C# scripts. |
| 63 | + </p> |
| 64 | + <p class="mb-3"> |
| 65 | + Full resume available upon requests via |
| 66 | + <a |
| 67 | + href="mailto:rythondev@gmail.com" |
| 68 | + class="underline hover:text-blue-400">Email</a |
| 69 | + >. |
| 70 | + </p> |
| 71 | + </div> |
| 72 | + <div class="text-center lg:text-left"> |
61 | 73 | <a |
62 | | - href="mailto:rythondev@gmail.com" |
63 | | - class="underline hover:text-blue-400">Email</a |
64 | | - >. |
65 | | - </p> |
66 | | - </div> |
67 | | - <div class="text-center lg:text-left"> |
68 | | - <a |
69 | | - href="./RyanLee_SoftwareDeveloper_Resume.pdf" |
70 | | - target="_blank" |
71 | | - class="bg-primary text-secondary hover:bg-accent rounded-full px-5 py-2 font-semibold transition-colors duration-150" |
72 | | - > |
73 | | - View Resume |
74 | | - </a> |
| 74 | + href="./RyanLee_SoftwareDeveloper_Resume.pdf" |
| 75 | + target="_blank" |
| 76 | + class="bg-primary text-secondary hover:bg-accent rounded-full px-5 py-2 font-semibold transition-colors duration-150" |
| 77 | + > |
| 78 | + View Resume |
| 79 | + </a> |
| 80 | + </div> |
75 | 81 | </div> |
76 | | - </div> |
| 82 | + </Card> |
77 | 83 | </div> |
78 | 84 | </div> |
0 commit comments