mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 20:05:42 +00:00
27 lines
623 B
TypeScript
27 lines
623 B
TypeScript
|
type Meta = {
|
||
|
title: string
|
||
|
heading: string
|
||
|
description: string
|
||
|
type: string
|
||
|
[name: string]: string | Object
|
||
|
}
|
||
|
|
||
|
export const metadata = (meta: Meta) => {
|
||
|
return {
|
||
|
...meta,
|
||
|
openGraph: {
|
||
|
title: meta.title,
|
||
|
description: meta.description,
|
||
|
images: [
|
||
|
{
|
||
|
url: `/api/og-image?text=${meta.heading}`,
|
||
|
width: 1200,
|
||
|
height: 600,
|
||
|
alt: meta.heading,
|
||
|
type: 'image/png'
|
||
|
}
|
||
|
],
|
||
|
type: meta.type
|
||
|
}
|
||
|
}
|
||
|
}
|