From 9e3cb51b8545fe9bcf1fead2d2ce4a870eb31f9a Mon Sep 17 00:00:00 2001 From: Araozu Date: Wed, 1 May 2024 15:00:46 -0500 Subject: [PATCH] Create a Card component --- src/components/Card.astro | 19 ++ src/pages/index.astro | 380 ++++++++++++++++++-------------------- 2 files changed, 201 insertions(+), 198 deletions(-) create mode 100644 src/components/Card.astro diff --git a/src/components/Card.astro b/src/components/Card.astro new file mode 100644 index 0000000..bbcdfcc --- /dev/null +++ b/src/components/Card.astro @@ -0,0 +1,19 @@ +--- +const { title } = Astro.props; +--- + +
+

+ {title} + +

+
+ +
+
diff --git a/src/pages/index.astro b/src/pages/index.astro index a942f0b..7a80a33 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,6 +1,7 @@ --- import LangLogo from "../components/LangLogo.astro"; import Sidebar from "../components/Sidebar.astro"; +import Card from "../components/Card.astro"; --- @@ -32,207 +33,190 @@ import Sidebar from "../components/Sidebar.astro";
-
-

- Languages - -

-
-
- TS logo -

- - JS/TS - - : Being the lingua franca of the web, I've used a - lot of JS/TS, vanilla and with frameworks. -

- Java logo -

- - Java/Kotlin - - : The language I learned in university, along with - JS/TS is the language I've used the most. I've mostly - written DSAs and backends with it (JSP/Spring). -

- Rust logo -

- - Rust - - : Currently my favorite language, I began learning - it in late 2022. I've written a backend and I'm currently - writing a programming language. -

- Go logo -

- - Go - - : I'm currently learning Go through advent of code, - and I hope to use it for some projects in the future. -

-
- -

- Others: - Other languages I've used (mostly at uni): -
-

- - - - - - -
-
- Other languages I've tried for fun: -
-
- - - - - - - - - - - - - - - -
-

+ +
+ TS logo

- In general I like to try new languages, explore new - concepts and see new ways to solve problems. + + JS/TS + + : Being the lingua franca of the web, I've used a lot + of JS/TS, vanilla and with frameworks. +

+ Java logo +

+ + Java/Kotlin + + : The language I learned in university, along with JS/TS + is the language I've used the most. I've mostly written + DSAs and backends with it (JSP/Spring). +

+ Rust logo +

+ + Rust + + : Currently my favorite language, I began learning it + in late 2022. I've written a backend and I'm currently + writing a programming language. +

+ Go logo +

+ + Go + + : I'm currently learning Go through advent of code, and + I plan to use it for some projects in the future.

-
+ +

+ Others: Other + languages I've used (mostly at uni): +
+

+ + + + + + +
+
+ Other languages I've tried for fun: +
+
+ + + + + + + + + + + + + + + +
+

+

+ In general I like to try new languages, explore new + concepts and see new ways to solve problems. +

+