gatepass / src /app /layout.tsx
rb125
Initial frontend deploy
4c62137
Raw
History Blame Contribute Delete
926 Bytes
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "GATEPASS — AI Trust Audit | Powered by Gemma 4",
description: "Self-auditing trust framework using Gemma 4 to detect hallucination, fabrication, and ethical inconsistency.",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="dark">
<head>
<link
href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&family=Inter:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
rel="stylesheet"
/>
</head>
<body className="min-h-screen antialiased selection:bg-accent/30 selection:text-accent">
<div className="relative min-h-screen flex flex-col">
{children}
</div>
</body>
</html>
);
}