import { env } from '@typebot.io/env' import Head from 'next/head' const getOrigin = () => { if (typeof window !== 'undefined') { return window.location.origin } return env.NEXTAUTH_URL } export const Seo = ({ title, description = 'Create and publish conversational forms that collect 4 times more answers and feel native to your product', imagePreviewUrl = `${getOrigin()}/images/og.png`, }: { title: string description?: string currentUrl?: string imagePreviewUrl?: string }) => { const formattedTitle = `${title} | BLS bot` return (