flowstate / src /app /layout.tsx
muthuk1's picture
Complete FlowState project - 6 pages, 3 API routes, all components, build verified
de40b1a verified
raw
history blame contribute delete
854 Bytes
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>
)
}