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

export const metadata: Metadata = {
  metadataBase: new URL("https://healthtoken.in"),
  title: "HealthToken | ABHA-Ready Health Records, Insurance Guidance & Wellness Tools",
  description:
    "HealthToken helps doctors, patients, families, and healthcare partners manage digital health identity, clinic intake, wellness records, insurance readiness, and long-term health benefits.",
  keywords: [
    "HealthToken",
    "healthtoken.in",
    "ABHA ready platform",
    "ABDM healthcare software",
    "digital health records India",
    "health insurance guidance",
    "clinic intake software",
    "patient health profile",
    "wellness checker",
    "doctor patient platform",
  ],
  alternates: {
    canonical: "/",
  },
  openGraph: {
    title: "HealthToken | Health Records, Insurance Readiness & Wellness Tools",
    description:
      "A guided healthcare platform for patient intake, wellness awareness, health record readiness and insurance-benefit guidance.",
    url: "https://healthtoken.in",
    siteName: "HealthToken",
    type: "website",
    locale: "en_IN",
  },
  twitter: {
    card: "summary_large_image",
    title: "HealthToken | Health Records, Insurance Readiness & Wellness Tools",
    description:
      "A guided healthcare platform for patient intake, wellness awareness, health record readiness and insurance-benefit guidance.",
  },
  icons: {
    icon: [
      { url: "/brand/favicon/favicon.ico", sizes: "any" },
      { url: "/brand/favicon/favicon-32x32.png", sizes: "32x32", type: "image/png" },
      { url: "/brand/favicon/favicon-16x16.png", sizes: "16x16", type: "image/png" },
    ],
    apple: [
      { url: "/brand/favicon/apple-touch-icon.png", sizes: "180x180", type: "image/png" },
    ],
  },
  manifest: "/brand/favicon/site.webmanifest",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en-IN">
      <body>{children}</body>
    </html>
  );
}
