Add authentication
This commit is contained in:
33
apps/builder/components/Seo.tsx
Normal file
33
apps/builder/components/Seo.tsx
Normal file
@ -0,0 +1,33 @@
|
||||
import Head from 'next/head'
|
||||
|
||||
export const Seo = ({
|
||||
title,
|
||||
currentUrl = 'https://app.typebot.io',
|
||||
description = 'Create and publish conversational forms that collect 4 times more answers and feel native to your product',
|
||||
imagePreviewUrl = 'https://app.typebot.io/site-preview.png',
|
||||
}: {
|
||||
title: string
|
||||
description?: string
|
||||
currentUrl?: string
|
||||
imagePreviewUrl?: string
|
||||
}) => (
|
||||
<Head>
|
||||
<title>Typebot | {title}</title>
|
||||
<meta name="title" content={title} />
|
||||
<meta property="og:title" content={title} />
|
||||
<meta property="twitter:title" content={title} />
|
||||
|
||||
<meta property="twitter:url" content={currentUrl} />
|
||||
<meta property="og:url" content={currentUrl} />
|
||||
|
||||
<meta name="description" content={description} />
|
||||
<meta property="twitter:description" content={description} />
|
||||
<meta property="og:description" content={description} />
|
||||
|
||||
<meta property="og:image" content={imagePreviewUrl} />
|
||||
<meta property="twitter:image" content={imagePreviewUrl} />
|
||||
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
</Head>
|
||||
)
|
Reference in New Issue
Block a user