superfuse-wizard
Version:
Interactive smart contract generator based on Superchain 's interoperability standard.
21 lines (17 loc) • 534 B
text/typescript
import type { MetaTagsProps } from 'svelte-meta-tags';
export function load() {
const title = "Superfuse Wizard Blog";
const description = "Updates, stories, and announcements from the Superfuse Wizard team";
const pageMetaTags = Object.freeze({
title: title,
titleTemplate: `%s | Blog}`,
description: description,
openGraph: {
title: title,
description: description,
},
}) satisfies MetaTagsProps;
return {
pageMetaTags: pageMetaTags,
};
}