import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Shell } from "@/components/layout/Shell";
import "./globals.css";

const inter = Inter({
  subsets: ["latin"],
  variable: "--font-inter",
});

export const metadata: Metadata = {
  title: "CRM | Property Management",
  description: "Real Estate & Property Contract Management System",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body
        suppressHydrationWarning
        className={`${inter.variable} font-sans antialiased text-slate-800 bg-slate-50`}
      >
        <Shell>
          {children}
        </Shell>
      </body>
    </html>
  );
}
