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

export const metadata: Metadata = {
  title: "Diverse Stationery | Quality School, Home & Office Supplies South Africa",
  description: "Stationery Made Simple. Shopping Made Easy. Order Typek copy paper, calculators, pens, lever arch files & school packs with fast nationwide courier delivery across South Africa.",
  keywords: ["Stationery South Africa", "Diverse Stationery", "School Stationery", "Typek Paper", "Office Supplies Johannesburg", "Casio Calculators SA"],
};

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="en" className="scroll-smooth">
      <body className="bg-slate-100 text-slate-900 antialiased selection:bg-amber-400 selection:text-slate-950">
        {children}
      </body>
    </html>
  );
}
