diff options
Diffstat (limited to 'app/layout.tsx')
| -rw-r--r-- | app/layout.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..821a80a --- /dev/null +++ b/app/layout.tsx | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | import "./globals.css"; | ||
| 2 | import { Inter } from "next/font/google"; | ||
| 3 | |||
| 4 | const inter = Inter({ subsets: ["latin"] }); | ||
| 5 | |||
| 6 | export const metadata = { | ||
| 7 | title: "Sats calculator", | ||
| 8 | description: "Satoshi calculator", | ||
| 9 | }; | ||
| 10 | |||
| 11 | export default function RootLayout({ | ||
| 12 | children, | ||
| 13 | }: { | ||
| 14 | children: React.ReactNode; | ||
| 15 | }) { | ||
| 16 | return ( | ||
| 17 | <html lang="en"> | ||
| 18 | <body className={inter.className}>{children}</body> | ||
| 19 | </html> | ||
| 20 | ); | ||
| 21 | } | ||
