← back to ClawCoder
src/app/layout.tsx
31 lines
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import { NavWrapper } from '@/components/nav-wrapper'
const inter = Inter({
variable: '--font-inter',
subsets: ['latin'],
})
export const metadata: Metadata = {
title: 'ClawCoder — CLAUDE.md Generator & Analyzer',
description:
'Build your perfect CLAUDE.md configuration with 15 profiles tailored to your age and experience level, or analyze your existing config for instant feedback.',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en" className={`${inter.variable} h-full antialiased`}>
<body className="flex min-h-full flex-col bg-white font-sans text-slate-800">
<NavWrapper />
<main className="flex flex-1 flex-col">{children}</main>
</body>
</html>
)
}