19 lines
489 B
TypeScript
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>
|
|
)
|
|
}
|