import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "AltSignal — Hyperliquid liquidation & smart-money alerts on Telegram",
  description:
    "Real-time Telegram alerts for Hyperliquid liquidations, whale moves, and smart-money copy-feed. $9.99/mo USDC or card.",
  metadataBase: new URL("https://signal.pulsaria.com"),
  openGraph: {
    title: "AltSignal — Trade before the herd",
    description: "Real-time Telegram alerts on Hyperliquid liquidations and smart-money wallets.",
    type: "website",
  },
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <head>
        <link rel="preconnect" href="https://fonts.googleapis.com" />
        <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
        <link
          href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap"
          rel="stylesheet"
        />
      </head>
      <body>{children}</body>
    </html>
  );
}
