aboutsummaryrefslogtreecommitdiffstats
path: root/app/layout.tsx
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
committerbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
commit8686078ae801fdc15df5a40ee158a43373d37c1c (patch)
treef8807fa764e917c6c4cdd30dcff31aa4bb060da8 /app/layout.tsx
Initial commit
Diffstat (limited to 'app/layout.tsx')
-rw-r--r--app/layout.tsx21
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 @@
1import "./globals.css";
2import { Inter } from "next/font/google";
3
4const inter = Inter({ subsets: ["latin"] });
5
6export const metadata = {
7 title: "Sats calculator",
8 description: "Satoshi calculator",
9};
10
11export 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}