mirror of
https://github.com/willchen96/mike.git
synced 2026-06-26 21:39:39 +02:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|