update meta information

This commit is contained in:
Matthias Nannt
2022-11-04 16:34:15 +01:00
parent 61d469c25c
commit ab13707090
2 changed files with 6 additions and 1 deletions
@@ -6,10 +6,15 @@ interface Props {
}
export default function MetaInformation({ title, description }: Props) {
const pageTitle = `${title} - Formbricks - Open Source Form Infrastructure`;
return (
<Head>
<title>{title} - Formbricks - Open Source Form Infrastructure</title>
<title>{pageTitle}</title>
<meta name="description" content={description} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content={`https://${process.env.VERCEL_URL}/social-image.png`} />
<meta property="og:image:alt" content="Formbricks - Open Source Form Infrastructure" />
</Head>
);
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB