import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";

const inter = Inter({
  variable: "--font-inter",
  subsets: ["latin"],
  display: "swap",
});

export const metadata: Metadata = {
  title: "Chip Center | ECU File Service Portal",
  description: "Profesyonel ECU/TCU dosya servisi ve operasyon portalı.",
  icons: {
    icon: "/chipcenter-logo.png",
    shortcut: "/chipcenter-logo.png",
  },
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="tr">
      <body className={inter.variable}>
        {children}
      </body>
    </html>
  );
}
