/* eslint-disable @next/next/no-sync-scripts */ /* eslint-disable @next/next/no-page-custom-font */ import type { Metadata } from 'next' import { Header } from 'components/common/Header/Header' import { Footer } from 'components/common/Footer' import { Providers } from './providers' import 'assets/style.css' export const metadata: Metadata = { title: 'Typebot - Open-source conversational apps builder', description: 'Powerful blocks to create unique chat experiences. Embed them anywhere on your apps and start collecting results like magic.', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (