36 lines
977 B
TypeScript
36 lines
977 B
TypeScript
import type { Metadata } from "next";
|
|
import { Plus_Jakarta_Sans, Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const plusJakartaSans = Plus_Jakarta_Sans({
|
|
variable: "--font-plus-jakarta",
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700", "800"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Skyheal | A Healthcare Platform",
|
|
description: "Advanced clinical intelligence through immersive AI, precision hardware, and bio-secure automation.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark scroll-smooth">
|
|
<body
|
|
className={`${plusJakartaSans.variable} ${inter.variable} antialiased bg-black text-white selection:bg-primary/30`}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|