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