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/downloads/osft-software-archive.astro | 2 +- src/pages/index.astro | 2 +- src/pages/projects.astro | 41 ------------------ src/pages/projects/index.astro | 56 +++++++++++++++++++++++++ 4 files changed, 58 insertions(+), 43 deletions(-) delete mode 100644 src/pages/projects.astro create mode 100644 src/pages/projects/index.astro (limited to 'src/pages') diff --git a/src/pages/downloads/osft-software-archive.astro b/src/pages/downloads/osft-software-archive.astro index 11e0a78..1090c35 100644 --- a/src/pages/downloads/osft-software-archive.astro +++ b/src/pages/downloads/osft-software-archive.astro @@ -76,7 +76,7 @@ import '../../styles/cards.css';

SHA256: 6b04ef59c0e0b4cc1c96cbdebfa3400e27fe855f88cb31da554df8691d9845d2

diff --git a/src/pages/index.astro b/src/pages/index.astro index 115d1f1..e7cc46d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -36,7 +36,7 @@ const featuredProjects = projects.filter(project => project.featured);
-

20 Years Old

+

21 Years Old

Living in Montreal, Quebec, Canada

diff --git a/src/pages/projects.astro b/src/pages/projects.astro deleted file mode 100644 index ee574c6..0000000 --- a/src/pages/projects.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -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

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