aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/routes/(main)/(public)/sign-up/+page.ts
blob: 8c86f5582e6bd5f296fb281ae36949c0687d0307 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import LL from '$i18n/i18n-svelte';
import { get } from 'svelte/store';
import type { PageLoad } from './$types';

const l = get(LL);

export const load: PageLoad = async () => {
    return {
        title: l.signUpPage.title(),
    };
};