diff options
| -rwxr-xr-x | bun.lockb | bin | 306654 -> 294457 bytes | |||
| -rw-r--r-- | package.json | 20 | ||||
| -rw-r--r-- | src/components/GitHubProjects.svelte | 2 | ||||
| -rw-r--r-- | src/data/contacts.json | 7 | ||||
| -rw-r--r-- | src/layouts/Default.astro | 4 | ||||
| -rw-r--r-- | src/pages/index.astro | 4 |
6 files changed, 15 insertions, 22 deletions
| Binary files differ diff --git a/package.json b/package.json index 1036837..4161c5d 100644 --- a/package.json +++ b/package.json @@ -10,20 +10,20 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "3.5.0", - "@astrojs/rss": "4.0.7", - "@astrojs/svelte": "^5.6.0", - "@astrojs/vercel": "7.7.2", + "@astrojs/preact": "4.0.0", + "@astrojs/rss": "4.0.10", + "@astrojs/svelte": "7.0.1", + "@astrojs/vercel": "8.0.0", "@iconify-json/fa6-brands": "^1.1.19", "@iconify-json/fa6-solid": "^1.1.21", - "astro": "4.11.3", + "astro": "^5.0.3", "astro-icon": "^1.1.0", - "dompurify": "^3.1.5", + "dompurify": "^3.1.6", "markdown-it": "^14.1.0", - "marked": "^13.0.0", - "preact": "^10.22.0", + "marked": "^13.0.2", + "preact": "^10.22.1", "sanitize-html": "^2.13.0", - "svelte": "^4.2.18", - "typescript": "^5.4.5" + "svelte": "^5.8.1", + "typescript": "^5.5.3" } } diff --git a/src/components/GitHubProjects.svelte b/src/components/GitHubProjects.svelte index 8ae55af..1c18b17 100644 --- a/src/components/GitHubProjects.svelte +++ b/src/components/GitHubProjects.svelte @@ -102,7 +102,7 @@ <div class="error">{error}</div> {:else} <div class="sort"> - <a href="#" on:click={(event) => handleSortClick('alphabetical', event)}>Alphabetic</a> + <a href="#" on:click={(event) => handleSortClick('alphabetical', event)}>A-Z</a> <a href="#" on:click={(event) => handleSortClick('lastUpdated', event)}>Last Updated</a> <a href="#" on:click={(event) => handleSortClick('mostStars', event)}>Most Stars</a> </div> diff --git a/src/data/contacts.json b/src/data/contacts.json index c47ffa3..80c7cc3 100644 --- a/src/data/contacts.json +++ b/src/data/contacts.json @@ -47,12 +47,5 @@ "username": "Andrew Lee Projects", "url": "https://discord.alee14.me", "mouseover": "Discord" - }, - { - "platform": "X", - "icon": "x-twitter", - "username": "Alee14498", - "url": "https://twitter.alee14.me", - "mouseover": "yuck." } ] diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index 1891915..9762816 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -5,7 +5,7 @@ interface Props { } const { title = "Andrew Lee", description = "Andrew Lee Website" } = Astro.props; -import { ViewTransitions } from 'astro:transitions'; +import { ClientRouter } from 'astro:transitions'; import Navbar from '../components/Navbar.svelte'; const date = new Date(); --- @@ -36,7 +36,7 @@ const date = new Date(); <meta name="theme-color" content="#1B291F"/> <meta name="generator" content={Astro.generator} /> - <ViewTransitions fallback="animate" /> + <ClientRouter fallback="animate" /> <title>{title}</title> </head> <body> diff --git a/src/pages/index.astro b/src/pages/index.astro index 936ce8e..adcc5a3 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -36,8 +36,8 @@ const featuredProjects = projects.filter(project => project.featured); </a> </div> <div class="description"> - <h2>19 Years Old</h2> - <h2>Student at Pearson Electrotechnology Centre</h2> + <h2>20 Years Old</h2> + <!--<h2>Student at Pearson Electrotechnology Centre</h2>--> <h2>Living in Montreal, Quebec, Canada</h2> </div> <div> |
