diff --git a/apps/www/src/routes/+page.svelte b/apps/www/src/routes/+page.svelte index 12fee3d..d3cb2d7 100644 --- a/apps/www/src/routes/+page.svelte +++ b/apps/www/src/routes/+page.svelte @@ -1,28 +1,22 @@ - -
- {@html data.banner} +
- {@html data.banner} +
- {@html data.banner} +
- {@html data.banner} +
- {@html data.banner} +
diff --git a/apps/www/src/routes/+page.ts b/apps/www/src/routes/+page.ts deleted file mode 100644 index 472c77b..0000000 --- a/apps/www/src/routes/+page.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { PageLoad } from './$types'; - -export const load = (async ({ fetch }): Promise<{ banner: string }> => { - const banner = await (await fetch('/api.svg')).text(); - return { banner }; -}) satisfies PageLoad;