File size: 519 Bytes
b0e79f7 0800976 b0e79f7 0800976 b0e79f7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "AirMicroDrip — LLM Liquidity Perpetual Futures",
description: "Real-time perpetual futures DEX powered by LLM inference liquidity. No mocks. Real data.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body className="bg-[#050508] text-[#e2e2ec] antialiased">{children}</body>
</html>
);
}
|