mike/frontend/src/app/layout.tsx

45 lines
1.1 KiB
TypeScript
Raw Normal View History

2026-04-29 19:49:06 +02:00
import type { Metadata } from "next";
import { Inter, EB_Garamond } from "next/font/google";
import "./globals.css";
import { Providers } from "@/components/providers";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const ebGaramond = EB_Garamond({
variable: "--font-eb-garamond",
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Mike - AI Legal Platform",
description:
"AI-powered legal document analysis and contract review platform.",
icons: {
icon: [
{ url: "/icon.svg", type: "image/svg+xml" },
{ url: "/favicon.ico" },
],
apple: "/apple-touch-icon.png",
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${inter.variable} ${ebGaramond.variable} font-sans antialiased`}
>
<Providers>{children}</Providers>
</body>
</html>
);
}