import React from 'react';

export const metadata = {
  title: 'Live Beauty Deals — Shop Makeup, Skincare & More',
  description: 'Watch live streams from top beauty sellers.',
  keywords: 'live shopping, beauty products, makeup, skincare, perfumes, live stream',
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <head>
        <link rel="icon" href="/favicon.ico" sizes="any" />
        <meta name="theme-color" content="#FF1493" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
      </head>
      <body style={{ margin: 0, padding: 0, backgroundColor: '#ffffff', color: '#2D1B2E' }}>
        {children}
      </body>
    </html>
  );
}
