From 8d860a2f0963bf1d7f4de048812f2bf7466e4ba9 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 28 Jul 2025 23:45:41 -0400 Subject: Update age, contacts and OSFT archive link --- src/pages/projects/index.astro | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/pages/projects/index.astro (limited to 'src/pages/projects') diff --git a/src/pages/projects/index.astro b/src/pages/projects/index.astro new file mode 100644 index 0000000..50e72a6 --- /dev/null +++ b/src/pages/projects/index.astro @@ -0,0 +1,56 @@ +--- +import Page from "../layouts/Page.astro"; +import projects from "../data/projects.json"; +import "../styles/cards.css"; +import GitHubProjects from "../components/GitHubProjects.svelte"; +import { Image } from 'astro:assets'; +import snugCup from '../images/snug_cup.png'; + +--- + +
+

3D Models

+
+
+

Snug Cup

+

My first 3D model for a school project

+ SnugCup +
+ Download +
+ Licensed under CC BY-NC-SA 4.0 +
+
+

Programming

+
+ { + 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