website/src/routes/legal/+page.ts

10 lines
230 B
TypeScript
Raw Normal View History

2023-01-25 22:41:11 +05:30
import type { PageLoad } from "./$types";
export const load = (() => {
2023-02-03 23:25:33 +05:30
return {
title: "Boring legal stuff",
description:
"These are some documents concerning transparency, privacy and safety."
};
}) satisfies PageLoad;