Files
crawlapi/frontend/app/layout.tsx
Developer 62994d4f3d
Some checks failed
CI / Test (push) Has been cancelled
Deploy / Deploy to Staging (push) Has been cancelled
CI / Build & Push (push) Has been cancelled
Deploy / Deploy to Production (push) Has been cancelled
Initial commit: Full Crawl API implementation
2026-04-29 07:03:48 +00:00

19 lines
489 B
TypeScript

export const metadata = {
title: 'Crawl API — Headless Browser REST API',
description: 'One API to crawl, screenshot, scrape, and extract data from any webpage. Built for developers.',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body style={{ margin: 0, fontFamily: 'system-ui, -apple-system, sans-serif', background: '#0a0a0a', color: '#fff' }}>
{children}
</body>
</html>
)
}