mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
export function pageMeta(title: string, description: string) {
|
|
return [
|
|
{ title },
|
|
{ name: "description", content: description },
|
|
{ property: "og:title", content: title },
|
|
{ property: "og:description", content: description },
|
|
];
|
|
}
|