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

export const metadata: Metadata = {
  title: "Nuance Professional Supply | B2B Sipariş Platformu",
  description: "Kuaför salonları için profesyonel B2B ürün sipariş ve yönetim platformu.",
};

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="tr">
      <body>{children}</body>
    </html>
  );
}
