Files
Skyheal/app/layout.tsx
T

36 lines
977 B
TypeScript
Raw Normal View History

2025-12-15 11:34:21 +05:30
import type { Metadata } from "next";
2026-01-22 15:43:18 +05:30
import { Plus_Jakarta_Sans, Inter } from "next/font/google";
2025-12-15 11:34:21 +05:30
import "./globals.css";
2026-01-22 15:43:18 +05:30
const plusJakartaSans = Plus_Jakarta_Sans({
variable: "--font-plus-jakarta",
subsets: ["latin"],
weight: ["400", "500", "600", "700", "800"],
2025-12-15 11:34:21 +05:30
});
2026-01-22 15:43:18 +05:30
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
2025-12-15 11:34:21 +05:30
});
export const metadata: Metadata = {
2026-01-22 15:43:18 +05:30
title: "Skyheal | A Healthcare Platform",
description: "Advanced clinical intelligence through immersive AI, precision hardware, and bio-secure automation.",
2025-12-15 11:34:21 +05:30
};
export default function RootLayout({
2026-01-22 15:43:18 +05:30
children,
2025-12-15 11:34:21 +05:30
}: Readonly<{
2026-01-22 15:43:18 +05:30
children: React.ReactNode;
2025-12-15 11:34:21 +05:30
}>) {
2026-01-22 15:43:18 +05:30
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>
);
2025-12-15 11:34:21 +05:30
}