aboutsummaryrefslogtreecommitdiffstats
path: root/app/layout.tsx
blob: cda3867fd22aa52ffa413793ba9387c36c490c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import "./globals.css";
import { Inter } from "next/font/google";

const inter = Inter({ subsets: ["latin"] });

export const metadata = {
  title: "SatsCalc.com",
  description:
    "Calculate Satoshi to BTC, Satoshi to USD, or how many Satoshis your Bitcoin is worth.",
  keywords: [
    "Satoshi",
    "Sats",
    "Bitcoin",
    "BTC",
    "Calculator",
    "Conversion",
    "USD",
    "Price",
  ],
  openGraph: {
    title: "SatsCalc.com",
    description:
      "Calculate Sats to BTC, Sats to USD, or see how many Sats your Bitcoin is worth.",
    images: "/calc.jpg",
  },
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body className={inter.className}>{children}</body>
    </html>
  );
}