aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-23 22:03:43 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-23 22:56:52 -0500
commita13da619efe4d441f8224bc77adc7458820ef00c (patch)
tree03de6fe8650916c3a1243422916a7a8679d59981 /src
parent25323664449802336c3aae84bd5492732e2a63a8 (diff)
downloadpersonal-website-a13da619efe4d441f8224bc77adc7458820ef00c.tar.gz
personal-website-a13da619efe4d441f8224bc77adc7458820ef00c.tar.bz2
personal-website-a13da619efe4d441f8224bc77adc7458820ef00c.zip
Favicon; Added project
Diffstat (limited to 'src')
-rw-r--r--src/components/projects.json14
-rw-r--r--src/layouts/Default.astro1
-rw-r--r--src/pages/404.astro2
-rw-r--r--src/pages/guidelines.md2
-rw-r--r--src/pages/projects.astro2
5 files changed, 18 insertions, 3 deletions
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';
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
+ <meta name="theme-color" content="#0e8106"/>
<meta name="generator" content={Astro.generator} />
<ViewTransitions />
<title>{title}</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'
---
-<Layout title="404" description="Page not found">
+<Layout title="404 - Andrew Lee" description="Page not found">
<div class="error">
<h1>404</h1>
<h2>Page not found</h2>
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";
<p>{project.description}</p>
{project.links.map((link) => {
return (
- <a href={link.url}>{link.name}</a>
+ <a href={link.url} target="_blank">{link.name}</a>
)
})}
</div>