import { Metadata } from 'models' import Head from 'next/head' import React from 'react' type SEOProps = { url: string typebotName: string metadata: Metadata } export const SEO = ({ url, typebotName, metadata: { title, description, favIconUrl, imageUrl }, }: SEOProps) => (