aboutsummaryrefslogtreecommitdiff
path: root/src/pages/projects/index.astro
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-09-18 01:41:42 -0400
committerAndrew Lee <andrew@alee14.me>2025-09-18 01:44:43 -0400
commitbef7bfad876fb37f6e337a699174c499c43abf33 (patch)
tree95c33a62791b8acd7e427cc504492368979c17b0 /src/pages/projects/index.astro
parent7889ea6ab03e922af1cb954d49913bb050cbec13 (diff)
downloadpersonal-website-bef7bfad876fb37f6e337a699174c499c43abf33.tar.gz
personal-website-bef7bfad876fb37f6e337a699174c499c43abf33.tar.bz2
personal-website-bef7bfad876fb37f6e337a699174c499c43abf33.zip
Revamped project page; Switch to React; Updated pkgs
Diffstat (limited to 'src/pages/projects/index.astro')
-rw-r--r--src/pages/projects/index.astro30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/pages/projects/index.astro b/src/pages/projects/index.astro
new file mode 100644
index 0000000..9a2dbc7
--- /dev/null
+++ b/src/pages/projects/index.astro
@@ -0,0 +1,30 @@
+---
+import Page from "../../layouts/Page.astro";
+import "../../styles/cards.css";
+---
+<Page title="Projects" description="Things that I have been working on in the past, and present">
+ <main>
+ <div class="column">
+ <div class="card">
+ <h1><a href="/projects/3d">3D Models</a></h1>
+ <p>Things I made on Blender</p>
+ </div>
+ <div class="card">
+ <h1><a href="/projects/programming">Programming</a></h1>
+ <p>Things I programmed</p>
+ </div>
+ <div class="card">
+ <h1><a href="/projects/website">Website Archive</a></h1>
+ <p>Websites I created</p>
+ </div>
+ </div>
+ </main>
+</Page>
+<style>
+ .column {
+ display: flex;
+ flex-direction: column;
+ gap: 0.1em;
+ }
+</style>
+