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

export const metadata: Metadata = {
  title: "Bitsia - Complete IT Solutions",
  description:
    "At Bitsia, a team of experts is involved in EVERY project — Software Developers, Graphic Design Artists, Business Consultants, and more.",
};

export const viewport: Viewport = {
  width: "device-width",
  initialScale: 1,
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" className="h-full antialiased">
      {/* Adobe Fonts (same kit as original) */}
      <head>
        <link rel="stylesheet" href="https://use.typekit.net/wgy0qqf.css" />
      </head>
      <body className="min-h-full flex flex-col">{children}</body>
    </html>
  );
}
