Files
shakethefrog/app/layout.tsx
HugeFrog24 52ddcd3db9 bugfix
2025-01-15 03:40:11 +01:00

31 lines
690 B
TypeScript

import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { ThemeProvider } from './providers/ThemeProvider'
import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Shake the Frog',
description: 'A fun interactive frog that reacts to shaking!',
icons: {
icon: '/images/frog.svg'
}
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${inter.className} transition-colors`}>
<ThemeProvider>
{children}
</ThemeProvider>
</body>
</html>
)
}