mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
43 lines
No EOL
1.4 KiB
TypeScript
43 lines
No EOL
1.4 KiB
TypeScript
import type { MetaTagsProps } from 'svelte-meta-tags';
|
|
import type { PageServerLoad } from './lib/$types';
|
|
import { fetchBandcampAlbums } from '$root/lib/util/fetchBandcampAlbums';
|
|
|
|
export const load: PageServerLoad = async ({ fetch, setHeaders, url }) => {
|
|
const metaTags: MetaTagsProps = Object.freeze({
|
|
title: 'Home',
|
|
description: "My name is Bradley Shellnut and I'm a Full Stack Software Engineer.",
|
|
openGraph: {
|
|
title: 'Home',
|
|
description: "My name is Bradley Shellnut and I'm a Full Stack Software Engineer.",
|
|
url: new URL(url.pathname, url.origin).href,
|
|
siteName: 'Bradley Shellnut Personal Website',
|
|
images: [
|
|
{
|
|
url: `${new URL(url.origin).href}/b_shell_nut_favicon.gif`,
|
|
alt: 'Bradley Shellnut Website Logo'
|
|
}
|
|
]
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
title: 'Home',
|
|
description: 'Home page',
|
|
images: `${new URL(url.origin).href}/b_shell_nut_favicon.gif`,
|
|
imageAlt: 'Bradley Shellnut Website Logo'
|
|
},
|
|
url: new URL(url.pathname, url.origin).href
|
|
});
|
|
|
|
const albums = async () => await fetchBandcampAlbums();
|
|
const articles = async () => await fetch(`/api/articles?page=1&limit=3`);
|
|
|
|
setHeaders({
|
|
'cache-control': 'max-age=43200'
|
|
});
|
|
return {
|
|
metaTagsChild: metaTags,
|
|
albums: albums(),
|
|
articlesData: (await articles()).json()
|
|
};
|
|
};
|
|
// <link rel="icon" type="image/gif" href="/b_shell_nut_favicon.gif" />;
|