import type { Metadata } from 'next';
import '@/styles/globals.css';
import Providers from './providers';

export const metadata: Metadata = {
  title: 'DrevStudio Vault - Enterprise Communication Platform',
  description: 'Secure enterprise communication, collaboration, and file management platform',
  keywords: 'enterprise communication, team collaboration, file sharing, secure messaging',
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en" className="dark" suppressHydrationWarning>
      <head>
        <link rel="icon" href="/favicon.ico" />
      </head>
      <body className="min-h-screen bg-vault-dark text-vault-text">
        <Providers>{children}</Providers>
      </body>
    </html>
  );
}
