32 lines
871 B
TypeScript
32 lines
871 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
import "@/app/globals.css";
|
|
import { AppShell } from "@/components/app-shell";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Claw Fleet Console",
|
|
description: "OpenClaw, ZeroClaw, and direct host operations dashboard",
|
|
};
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<AppShell>{children}</AppShell>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|