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 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 10 deletions(-) (limited to 'src/pages/archive') 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 ( + + ) + }) + }
-- cgit v1.2.3