From 59de20ef0835170d30f5033d8c98aad41e554882 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Wed, 3 Dec 2025 20:05:55 -0500 Subject: new models; fix link --- src/pages/archive/index.astro | 47 +++++++++++++++++++++++++++++++++--------- src/pages/projects/index.astro | 2 +- 2 files changed, 38 insertions(+), 11 deletions(-) (limited to 'src/pages') diff --git a/src/pages/archive/index.astro b/src/pages/archive/index.astro index 7a23d95..920a65f 100644 --- a/src/pages/archive/index.astro +++ b/src/pages/archive/index.astro @@ -1,21 +1,48 @@ --- import Page from "../../layouts/Page.astro"; import "../../styles/cards.css"; +import archive from '../../data/website.json'; ---

Personal

-
-

First website

-

Created by my dad using iFrames

- 2013 -
-
-

alee14.ga

-

My first website that I made using Bootstrap 3 with a template

- 2017 -
+ { + archive.personal.map((item) => { + return ( + + ) + }) + } +
+

School Project

+
+ { + archive.school.map((item) => { + return ( + + ) + }) + } +
+

Collaboration

+
+ { + archive.collaborations.map((item) => { + return ( + + ) + }) + }
diff --git a/src/pages/projects/index.astro b/src/pages/projects/index.astro index 4d997c5..ddecff3 100644 --- a/src/pages/projects/index.astro +++ b/src/pages/projects/index.astro @@ -16,7 +16,7 @@ const featuredProjects = projects.filter(project => project.featured);

Things I programmed

-

Website Archive

+

Website Archive

Websites I created

-- cgit v1.2.3