// app/layout.tsx

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

export const metadata: Metadata = {
  title: "Optimizi Tech | Solution intelligente pour restaurants",
  description:
    "Optimizi Tech est une solution intelligente de pilotage pour restaurants en Tunisie. Données en temps réel, analyse stratégique, contrôle total.",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="fr">
      <body className="bg-white text-gray-900 antialiased">
        {children}
      </body>
    </html>
  );
}