From bef7bfad876fb37f6e337a699174c499c43abf33 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 18 Sep 2025 01:41:42 -0400 Subject: Revamped project page; Switch to React; Updated pkgs --- src/pages/projects/3d.astro | 46 ++++++++++++++++++++++++++++++++++++ src/pages/projects/index.astro | 30 +++++++++++++++++++++++ src/pages/projects/programming.astro | 42 ++++++++++++++++++++++++++++++++ 3 files changed, 118 insertions(+) create mode 100644 src/pages/projects/3d.astro create mode 100644 src/pages/projects/index.astro create mode 100644 src/pages/projects/programming.astro (limited to 'src/pages/projects') diff --git a/src/pages/projects/3d.astro b/src/pages/projects/3d.astro new file mode 100644 index 0000000..8f9a06d --- /dev/null +++ b/src/pages/projects/3d.astro @@ -0,0 +1,46 @@ +--- +import Page from "../../layouts/Page.astro"; +import "../../styles/cards.css"; +import ThreeJSModels from "../../components/3DModels.jsx"; +--- + +
+
+
+

Test

+

Description

+ +
+ Download + Licensed with (license) +
+
+
+

Test

+

Description

+ +
+ Download + Licensed with (license) +
+
+
+

Test

+

Description

+ +
+ Download + Licensed with (license) +
+
+
+
+
+ + 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"; +--- + +
+
+
+

3D Models

+

Things I made on Blender

+
+
+

Programming

+

Things I programmed

+
+
+

Website Archive

+

Websites I created

+
+
+
+
+ + diff --git a/src/pages/projects/programming.astro b/src/pages/projects/programming.astro new file mode 100644 index 0000000..2c5d073 --- /dev/null +++ b/src/pages/projects/programming.astro @@ -0,0 +1,42 @@ +--- +import Page from "../../layouts/Page.astro"; +import projects from "../../data/projects.json"; +import "../../styles/cards.css"; +import GitHubProjects from "../../components/GitHubProjects.svelte"; + +--- + +
+
+ { + projects.map((project) => { + return ( +
+

{project.name}

+

{project.description}

+
+ {project.links.map((link) => { + return ( + {link.name} + ) + })} +
+
+ ) + }) + } +
+

Andrew Lee GitHub Repositories

+ +

AleeCorp/Alee Productions GitHub Repositories

+ +
+
+ + -- cgit v1.2.3