diff options
Diffstat (limited to 'src')
| -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 |
4 files changed, 5 insertions, 12 deletions
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> |
