import React from "react";
import type { Metadata, Viewport } from "next";
import { Inter } from "next/font/google";
import { Header } from "@/components/header";
import { Footer } from "@/components/footer";

import "./globals.css";

const inter = Inter({ 
  subsets: ["latin"],
  variable: "--font-inter",
});

export const metadata: Metadata = {
  title: "CyberDefender IQ Pro | HIPAA Compliant IT Support for Healthcare",
  description:
    "Enterprise-grade HIPAA compliant IT support and cybersecurity solutions for hospitals, clinics, and medical organizations. Protect your patient data with trusted experts.",
  generator: "v0.app",
};

export const viewport: Viewport = {
  themeColor: "#1e4d7b",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body className={`${inter.variable} font-sans antialiased`}>
        <Header />
        <main>{children}</main>
        <Footer />
      </body>
    </html>
  );
}
