* fix * fixes * fixes * update docs * fixes * fixes * sandbox tokens * better logging
22 lines
576 B
TypeScript
22 lines
576 B
TypeScript
import type { Metadata } from "next";
|
|
import { GeistSans } from "geist/font/sans";
|
|
import { GeistMono } from "geist/font/mono";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "agent-browser Environments",
|
|
description: "Run agent-browser in different compute environments",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`}>
|
|
<body className="min-h-screen font-sans antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|