From 6c7730e852854839a05f8380196a312d07ffa01d Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 18 Sep 2025 18:13:56 -0400 Subject: CSS tweaks; ThreeJS stuff; Moved feat. projects --- src/pages/projects/3d.astro | 43 ++++++++++++++++-------------------------- src/pages/projects/index.astro | 30 +++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 27 deletions(-) (limited to 'src/pages/projects') diff --git a/src/pages/projects/3d.astro b/src/pages/projects/3d.astro index 8f9a06d..3715a3d 100644 --- a/src/pages/projects/3d.astro +++ b/src/pages/projects/3d.astro @@ -1,38 +1,27 @@ --- import Page from "../../layouts/Page.astro"; +import Models from "../../data/models.json"; import "../../styles/cards.css"; import ThreeJSModels from "../../components/3DModels.jsx"; ---
-
-

Test

-

Description

- -
- Download - Licensed with (license) -
-
-
-

Test

-

Description

- -
- Download - Licensed with (license) -
-
-
-

Test

-

Description

- -
- Download - Licensed with (license) -
-
+ { + Models.map((model) => { + return ( +
+

{model.name}

+

{model.description}

+ +
+ Download + Licensed under {model.license} +
+
+ ) + }) + }
diff --git a/src/pages/projects/index.astro b/src/pages/projects/index.astro index 9a2dbc7..4d997c5 100644 --- a/src/pages/projects/index.astro +++ b/src/pages/projects/index.astro @@ -1,6 +1,8 @@ --- import Page from "../../layouts/Page.astro"; import "../../styles/cards.css"; +import projects from "../../data/projects.json"; +const featuredProjects = projects.filter(project => project.featured); ---
@@ -18,6 +20,28 @@ import "../../styles/cards.css";

Websites I created

+
-- cgit v1.2.3