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

export const metadata: Metadata = {
  title: 'Internal Support Portal',
  description: 'Internal product support knowledge base',
};

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