mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
34 lines
791 B
TypeScript
34 lines
791 B
TypeScript
import type { Metadata } from 'next'
|
|
import type { ReactNode } from 'react'
|
|
import { IBM_Plex_Sans, Space_Grotesk } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const ibmPlexSans = IBM_Plex_Sans({
|
|
subsets: ['latin'],
|
|
variable: '--font-body',
|
|
})
|
|
|
|
const spaceGrotesk = Space_Grotesk({
|
|
subsets: ['latin'],
|
|
variable: '--font-heading',
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'DBAL Daemon',
|
|
description: 'C++ DBAL daemon deployment, security, and observability.',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${ibmPlexSans.variable} ${spaceGrotesk.variable}`}>
|
|
<body className="min-h-screen bg-background text-foreground antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|