From 8686078ae801fdc15df5a40ee158a43373d37c1c Mon Sep 17 00:00:00 2001 From: bndw Date: Wed, 26 Apr 2023 17:49:25 -0700 Subject: Initial commit --- app/layout.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/layout.tsx (limited to 'app/layout.tsx') 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 @@ +import "./globals.css"; +import { Inter } from "next/font/google"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata = { + title: "Sats calculator", + description: "Satoshi calculator", +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} + + ); +} -- cgit v1.2.3