WIP: My personal website
0

Configure Feed

Select the types of activity you want to include in your feed.

some og tweaks

+6 -6
src/lib/assets/og_me.webp

This is a binary file and will not be displayed.

+1 -1
src/routes/+page.svelte
··· 8 8 import Services from '$lib/components/Services.svelte'; 9 9 import Sponsors from '$lib/components/Sponsors.svelte'; 10 10 import Contact from '$lib/components/Contact.svelte'; 11 - import me from '$lib/assets/me.webp'; 11 + import me from '$lib/assets/og_me.webp'; 12 12 import type { PageProps } from './$types'; 13 13 14 14 let { data }: PageProps = $props();
+2 -2
src/routes/history/books/+page.svelte
··· 7 7 8 8 <svelte:head> 9 9 <title>Books | Bailey Townsend</title> 10 - <meta name="description" content="What I'm reading and books I've recently finished." /> 10 + <meta name="description" content="What I've been reading lately." /> 11 11 <meta name="og:title" content="Books | Bailey Townsend" /> 12 - <meta name="og:description" content="What I'm reading and books I've recently finished." /> 12 + <meta name="og:description" content="What I've been reading lately." /> 13 13 </svelte:head> 14 14 15 15 <BookHistory currentlyReading={data.currentlyReading} finishedBooks={data.finishedBooks} />
+3 -3
src/routes/history/music/+page.svelte
··· 7 7 8 8 <svelte:head> 9 9 <title>Music History | Bailey Townsend</title> 10 - <meta name="description" content="Tracks I've been listening to recently." /> 11 - <meta name="og:title" content="Music History | Bailey Townsend" /> 12 - <meta name="og:description" content="Tracks I've been listening to recently." /> 10 + <meta name="description" content="What I've been listening to lately." /> 11 + <meta name="og:title" content="Listening History | Bailey Townsend" /> 12 + <meta name="og:description" content="What I've been listening to lately." /> 13 13 </svelte:head> 14 14 15 15 <MusicHistory recentPlays={data.recentPlays} />