import { Toaster } from 'react-hot-toast' import { GeistSans } from 'geist/font/sans' import { GeistMono } from 'geist/font/mono' import '@/app/globals.css' import { cn } from '@/lib/utils' import { TailwindIndicator } from '@/components/tailwind-indicator' import { Providers } from '@/components/providers' import { Header } from '@/components/header' export const metadata = { metadataBase: new URL(`https://${process.env.VERCEL_URL}`), title: { default: 'Next.js AI Chatbot', template: `%s - Next.js AI Chatbot` }, description: 'An AI-powered chatbot template built with Next.js and Vercel.', icons: { icon: '/favicon.ico', shortcut: '/favicon-16x16.png', apple: '/apple-touch-icon.png' } } export const viewport = { themeColor: [ { media: '(prefers-color-scheme: light)', color: 'white' }, { media: '(prefers-color-scheme: dark)', color: 'black' } ] } interface RootLayoutProps { children: React.ReactNode } export default function RootLayout({ children }: RootLayoutProps) { return (
{children}
) }