From a13da619efe4d441f8224bc77adc7458820ef00c Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 23 Jan 2024 22:03:43 -0500 Subject: Favicon; Added project --- src/components/projects.json | 14 ++++++++++++++ src/layouts/Default.astro | 1 + src/pages/404.astro | 2 +- src/pages/guidelines.md | 2 +- src/pages/projects.astro | 2 +- 5 files changed, 18 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/components/projects.json b/src/components/projects.json index 1639297..7da01c9 100644 --- a/src/components/projects.json +++ b/src/components/projects.json @@ -28,5 +28,19 @@ "url": "https://snug-cup.alee14.me" } ] + }, + { + "name": "YouTube TV Client", + "description": "A electron app that goes to youtube.com/tv using a Samsung Smart TV as the user agent.", + "links": [ + { + "name": "Download", + "url": "https://github.com/Alee14/YouTube-TV-Client/releases" + }, + { + "name": "Source Code", + "url": "https://github.com/Alee14/YouTube-TV-Client" + } + ] } ] diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index 29662c6..2d3f4e2 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -20,6 +20,7 @@ import Navbar from '../components/Navbar.vue'; + {title} diff --git a/src/pages/404.astro b/src/pages/404.astro index f6cc185..09701a2 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -1,7 +1,7 @@ --- import Layout from '../layouts/Default.astro' --- - +

404

Page not found

diff --git a/src/pages/guidelines.md b/src/pages/guidelines.md index 4ec100d..4e7c7a1 100644 --- a/src/pages/guidelines.md +++ b/src/pages/guidelines.md @@ -84,4 +84,4 @@ Threads/Posts is a new feature on Discord that allows users to create subchannel We recommend you to follow Discord's [Terms of Service](https://discord.com/terms) and [Community Guidelines](https://discord.com/guidelines) -**Last updated: December 16th, 2022** +*Last updated: December 16th, 2022* diff --git a/src/pages/projects.astro b/src/pages/projects.astro index 70eeb08..248534a 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -12,7 +12,7 @@ import projects from "../components/projects.json";

{project.description}

{project.links.map((link) => { return ( - {link.name} + {link.name} ) })}
-- cgit v1.2.3