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/data/contacts.json | 7 ++++ src/data/projects.json | 2 +- src/pages/downloads/osft-software-archive.astro | 2 +- src/pages/index.astro | 2 +- src/pages/projects.astro | 41 ------------------ src/pages/projects/index.astro | 56 +++++++++++++++++++++++++ 6 files changed, 66 insertions(+), 44 deletions(-) delete mode 100644 src/pages/projects.astro create mode 100644 src/pages/projects/index.astro (limited to 'src') diff --git a/src/data/contacts.json b/src/data/contacts.json index 739a145..6ff24fd 100644 --- a/src/data/contacts.json +++ b/src/data/contacts.json @@ -54,5 +54,12 @@ "username": "Andrew Lee Projects", "url": "https://discord.alee14.me", "mouseover": "Discord" + }, + { + "platform": "Steam", + "icon": "steam", + "username": "Alee14498", + "url": "https://steamcommunity.com/id/Alee14498", + "mouseover": "Steam" } ] diff --git a/src/data/projects.json b/src/data/projects.json index 3624c58..53ff4a5 100644 --- a/src/data/projects.json +++ b/src/data/projects.json @@ -46,7 +46,7 @@ "links": [ { "name": "Download", - "url": "https://cloud.alee14.me/s/GjwJeNb8JBCbaHw", + "url": "https://files.alee14.me/Software/OSFT-Software-Archive.zip", "external": true }, { 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