2023-06-22 16:45:31 +00:00
|
|
|
import { Metadata } from 'next'
|
|
|
|
|
|
|
|
import '@/app/globals.css'
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: {
|
|
|
|
default: 'Keypair',
|
|
|
|
template: `%s - Keypair`,
|
|
|
|
},
|
|
|
|
themeColor: [
|
|
|
|
{ media: '(prefers-color-scheme: light)', color: 'white' },
|
|
|
|
{ media: '(prefers-color-scheme: dark)', color: 'black' },
|
|
|
|
],
|
|
|
|
icons: {
|
|
|
|
icon: '/favicon.ico',
|
|
|
|
shortcut: '/favicon-16x16.png',
|
|
|
|
apple: '/apple-touch-icon.png',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
interface RootLayoutProps {
|
|
|
|
children: React.ReactNode
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
|
|
return (
|
|
|
|
<html lang='en' suppressHydrationWarning>
|
2023-06-23 18:04:39 +00:00
|
|
|
<body className='flex min-h-screen w-full bg-white font-sans antialiased'>{children}</body>
|
2023-06-22 16:45:31 +00:00
|
|
|
</html>
|
|
|
|
)
|
|
|
|
}
|