File size: 627 Bytes
0383459
c79f5fa
0383459
 
c79f5fa
 
0383459
c79f5fa
0383459
 
 
c79f5fa
 
0383459
 
 
 
 
 
 
 
 
 
c79f5fa
0383459
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { Metadata } from "next";
import { Vollkorn } from "next/font/google";
import "./globals.css";

const vollkorn = Vollkorn({
  variable: "--font-vollkorn",
  subsets: ["latin"],
  weight: ["400", "500", "600", "700"],
});

export const metadata: Metadata = {
  title: "API Key Generator",
  description: "Generate and manage your API keys",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body
        className={`${vollkorn.variable} antialiased font-vollkorn`}
      >
        {children}
      </body>
    </html>
  );
}