import type { Metadata } from 'next';
import './globals.css';

export const metadata: Metadata = {
  title: 'LiveChat Widget Demo',
  description: 'A demo for the LiveChat Widget',
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body className="bg-white">{children}</body>
    </html>
  );
}
