Compost / frontend /_src /app /layout.tsx
abc1181's picture
Fix health endpoint routing order
de886f2
Raw
History Blame Contribute Delete
557 Bytes
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
const inter = Inter({ subsets: ['latin'], variable: '--font-inter' })
export const metadata: Metadata = {
title: 'Compost - AI Tool Platform',
description: 'Unified AI tool integration platform',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={`${inter.variable} font-sans bg-bg-primary text-text-primary`}>
{children}
</body>
</html>
)
}