why-agent / client /frontend /src /app /layout.tsx
MapoTofu9's picture
deploy: HF Spaces
5d30bdc
Raw
History Blame Contribute Delete
810 Bytes
import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google";
import { JetBrains_Mono } from "next/font/google";
import "./globals.css";
const jakarta = Plus_Jakarta_Sans({
subsets: ["latin"],
variable: "--font-display",
weight: ["400", "500", "600", "700", "800"],
});
const mono = JetBrains_Mono({
subsets: ["latin"],
variable: "--font-mono",
weight: ["400", "500"],
});
export const metadata: Metadata = {
title: "why-agent — Root-cause investigation",
description: "Ask why a metric moved — get a structured root-cause report.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className={`${jakarta.variable} ${mono.variable}`}>
<body>{children}</body>
</html>
);
}