suna/frontend/src/app/layout.tsx

29 lines
617 B
TypeScript
Raw Normal View History

2025-03-30 14:48:57 +08:00
import './globals.css';
2025-04-13 20:57:29 +08:00
import type { Metadata } from 'next';
2025-04-14 21:00:46 +08:00
import { Manrope } from 'next/font/google';
2025-04-13 20:57:29 +08:00
import { Providers } from './providers';
2025-03-30 14:48:57 +08:00
2025-04-14 21:00:46 +08:00
const manrope = Manrope({
subsets: ['latin'],
variable: '--font-sans',
});
2025-03-30 14:48:57 +08:00
2025-04-13 20:57:29 +08:00
export const metadata: Metadata = {
title: 'AgentPress',
description: 'Run AI agents in your company or personally',
};
2025-03-30 14:48:57 +08:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
2025-04-13 20:57:29 +08:00
<html lang="en" suppressHydrationWarning>
2025-04-14 21:00:46 +08:00
<body className={manrope.className}>
2025-04-13 20:57:29 +08:00
<Providers>{children}</Providers>
2025-03-30 14:48:57 +08:00
</body>
</html>
);
}