mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
33 lines
623 B
TypeScript
33 lines
623 B
TypeScript
import type { Metadata } from 'next'
|
|
import {
|
|
Fira_Code,
|
|
Space_Grotesk,
|
|
Jost,
|
|
Fira_Sans,
|
|
Inter,
|
|
Hanken_Grotesk
|
|
} from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const hankenGrotesk = Hanken_Grotesk({
|
|
subsets: ['latin'],
|
|
variable: '--font-hanken-grotesk'
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'ASI Calculator',
|
|
description: 'See how much ASI you get for your OCEAN, AGIX, or FET.'
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={hankenGrotesk.variable}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|