Compost / frontend /app /layout.tsx
abc1181's picture
Complete frontend rebuild: 11 pages, professional composio-level design, connections/playground pages, fixed tailwind config
83c80d0
Raw
History Blame Contribute Delete
642 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 Integration Platform',
description: 'Unified platform for AI agent tool integration. Connect 1000+ apps with managed auth, execute tools, and build automations.',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="dark">
<body className={`${inter.variable} font-sans`}>
{children}
</body>
</html>
)
}