From bef7bfad876fb37f6e337a699174c499c43abf33 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 18 Sep 2025 01:41:42 -0400 Subject: Revamped project page; Switch to React; Updated pkgs --- src/pages/projects.astro | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 src/pages/projects.astro (limited to 'src/pages/projects.astro') diff --git a/src/pages/projects.astro b/src/pages/projects.astro deleted file mode 100644 index 80bc97c..0000000 --- a/src/pages/projects.astro +++ /dev/null @@ -1,42 +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

- -
-
- - -- cgit v1.2.3