import type { Metadata } from 'next';
import './globals.css';
import LayoutShell from '@/components/layout/LayoutShell';
import ToastContainer from '@/components/ui/Toast';

export const metadata: Metadata = {
  title: 'SceneKey Store – Electronics Marketplace',
  description: 'Your trusted marketplace for premium electronics. Best prices, fast delivery, and expert support.',
  icons: {
    icon: '/icon.png',
    shortcut: '/images/logo.png',
    apple: '/images/logo.png',
  },
};

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