aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-22 19:56:50 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-22 20:53:41 -0500
commit8fd6f1a2739b686092bbb5806666e63f283d6510 (patch)
treee378cd080f8f6882e0282e9db6a6b0c48030049b /src/pages
parent7604592b7a68fee231b63ff5123837e3eb1beaf8 (diff)
downloadpersonal-website-8fd6f1a2739b686092bbb5806666e63f283d6510.tar.gz
personal-website-8fd6f1a2739b686092bbb5806666e63f283d6510.tar.bz2
personal-website-8fd6f1a2739b686092bbb5806666e63f283d6510.zip
Add Vue.JS for Navbar; Transitions; Getting started on projects
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/index.astro8
-rw-r--r--src/pages/projects.astro2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index ab4f39b..0918a74 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -12,16 +12,16 @@ import '../styles/index.css';
<Image src={Profile} class="avatar" alt="Andrew Lee" height={200} width={200} />
<h1 id="title">Hey, I'm Andrew Lee!</h1>
<div class="social">
- <a href="https://linkedin.alee14.me" target="_blank">
+ <a href="https://linkedin.alee14.me" target="_blank" aria-label="LinkedIn">
<Icon name="fa6-brands:linkedin" />
</a>
- <a href="https://github.alee14.me" target="_blank">
+ <a href="https://github.alee14.me" target="_blank" aria-label="GitHub">
<Icon name="fa6-brands:github" />
</a>
- <a href="https://youtube.alee14.me" target="_blank">
+ <a href="https://youtube.alee14.me" target="_blank" aria-label="YouTube">
<Icon name="fa6-brands:youtube" />
</a>
- <a href="https://instagram.alee14.me" target="_blank">
+ <a href="https://instagram.alee14.me" target="_blank" aria-label="Instagram">
<Icon name="fa6-brands:instagram" />
</a>
</div>
diff --git a/src/pages/projects.astro b/src/pages/projects.astro
index fb61caf..0a12522 100644
--- a/src/pages/projects.astro
+++ b/src/pages/projects.astro
@@ -1,5 +1,5 @@
---
import Page from "../layouts/Page.astro";
---
-<Page title="Projects" description="Hello world">
+<Page title="Projects" description="Things that I have been working on in the past, and present">
</Page>