import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { cn } from "@/lib/utils";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "BSV MCP - Hosted Service",
description: "Bitcoin SV Model Context Protocol - Authenticate and Connect",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className="dark">
<body
className={cn(
"min-h-screen bg-background font-sans antialiased",
inter.className,
)}
>
{children}
</body>
</html>
);
}