We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b24bd4d commit a2ce165Copy full SHA for a2ce165
src/frontend/src/routes/(needs_onboarding)/(navbar_and_footer)/reverse/+page.ts
@@ -1,8 +1,20 @@
1
import { prefetch } from '#queries/config';
2
import type { PageLoad } from './$types';
3
+import { definePageMetaTags } from 'svelte-meta-tags';
4
5
export const load: PageLoad = async ({ parent, fetch }) => {
6
const { queryClient } = await parent();
7
8
prefetch({ queryClient: queryClient, fetch });
9
+
10
+ const pageTags = definePageMetaTags({
11
+ title: 'Reverse',
12
+ description: 'Reverse share files with other using this page',
13
+ openGraph: {
14
15
+ description: 'Reverse share files with other using this page'
16
+ }
17
+ });
18
+ return { ...pageTags };
19
20
};
0 commit comments