aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/blog/index.astro2
-rw-r--r--src/pages/index.astro2
-rw-r--r--src/pages/projects.astro4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro
index 0acaaee..bc8844c 100644
--- a/src/pages/blog/index.astro
+++ b/src/pages/blog/index.astro
@@ -11,7 +11,7 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate
<main>
<div class="header">
<a href="/blog/rss.xml">
- <Icon name="fa6-solid:square-rss" class="icon" />
+ <Icon name="fa6-solid:square-rss" aria-label="RSS" />
</a>
</div>
<div class="grid">
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 35ed847..b87e151 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -6,7 +6,7 @@ import { getCollection } from "astro:content";
import Profile from '../images/Alee.png';
import '../styles/index.css';
-import {formatDate} from "../util";
+import { formatDate } from "../util";
const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()).slice(0, 10);
---
diff --git a/src/pages/projects.astro b/src/pages/projects.astro
index 4536f03..9b2b8a2 100644
--- a/src/pages/projects.astro
+++ b/src/pages/projects.astro
@@ -27,9 +27,9 @@ import GitHubProjects from "../components/GitHubProjects";
}
</div>
<h2><a href="https://github.com/Alee14" target="_blank">Andrew Lee GitHub Repositories</a></h2>
- <GitHubProjects client:load username="Alee14" />
+ <GitHubProjects client:load username="Alee14" isOrganization={false} />
<h2><a href="https://github.com/alee14-projects" target="_blank">AleeCorp/Alee Productions GitHub Repositories</a></h2>
- <GitHubProjects client:load username="alee14-projects" isOrganization />
+ <GitHubProjects client:load username="alee14-projects" isOrganization={true} />
</main>
</Page>
<style>