File size: 854 Bytes
820c67c de40b1a 820c67c de40b1a 820c67c de40b1a 820c67c | 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 { Inter, IBM_Plex_Mono } from 'next/font/google'
import './globals.css'
const inter = Inter({ subsets: ['latin'], variable: '--font-inter', display: 'swap', weight: ['400','500','600','700'] })
const mono = IBM_Plex_Mono({ subsets: ['latin'], variable: '--font-ibm-plex-mono', display: 'swap', weight: ['400','500','600','700'] })
export const metadata: Metadata = {
title: 'FlowState — AI-Powered Anti-Churn Engine',
description: 'Autonomous retention layer for Solana protocols. Powered by Torque MCP.',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={`dark ${inter.variable} ${mono.variable}`}>
<body className="bg-canvas-dark text-[#eaecef] font-sans antialiased min-h-screen">{children}</body>
</html>
)
}
|