From 91231b2d24a04ad8aee18323b2818a40169befe8 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sat, 21 Oct 2023 00:11:24 -0700 Subject: change landing page - remove projects, moved to main site this is now strictly a blog --- src/components/Footer.astro | 2 +- src/components/ProjectGrid.astro | 110 --------------------------------------- src/pages/index.astro | 16 ++---- 3 files changed, 4 insertions(+), 124 deletions(-) delete mode 100644 src/components/ProjectGrid.astro (limited to 'src') diff --git a/src/components/Footer.astro b/src/components/Footer.astro index d005f2a..d40829b 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -3,7 +3,7 @@ const today = new Date(); --- - -
-
- - Nijitrack Logo - -

NijiTrack

-

- Record and track historical subscriber data for a set of YouTube channels. - Currently mine is set up to record data for Nijisanji Virtual YouTubers (Nijitracker link on repo). -

-
-
- - Patchwork Logo - -

Video Archive Web (Patchwork Archive)

-

- A Python Flask web app that can host archived YouTube videos, currently used as the - front end for Patchwork Archive (link on repo). -

-
-
- - JHolodex Wrapper - -

JHolodex

-

- A Java object oriented wrapper for the Holodex API -

-
-
- - Sapphire - -

Project Sapphire

-

- My fork of Sapphire, a C++ Final Fantasy XIV Server Emulator. Most of the work I've done - is pretaining to scripting content -

-
-
- - YALP Bot - -

Yet Another Lavaplayer Bot

-

- A Discord music bot written in Java using JDA and Lavaplayer -

-
-
- - ytmp3 Autotag - -

GitHub

-

- GitHub is where I store the majority of the code I write! There's a bunch of stuff over there if you're interested -

-
-
\ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index 03b93c9..d54d4a3 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -5,7 +5,6 @@ import Footer from "../components/Footer.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; import { getCollection } from "astro:content"; import FormattedDate from "../components/FormattedDate.astro"; -import ProjectGrid from "../components/ProjectGrid.astro"; const posts = (await getCollection("blog")).sort( (a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf() @@ -40,7 +39,7 @@ const posts = (await getCollection("blog")).sort(