12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
/** @type {import('./$types').PageLoad} */
|
|
export function load() {
|
|
return {
|
|
metadata: {
|
|
title: 'home.seo.title',
|
|
description: 'home.seo.description',
|
|
keywords: 'home.seo.keywords',
|
|
url: 'home.seo.url',
|
|
image: 'home.seo.image',
|
|
},
|
|
};
|
|
}
|