mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-10 09:14:45 +08:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import "~/styles/globals.css";
|
|
|
|
import { type Metadata } from "next";
|
|
import { Geist } from "next/font/google";
|
|
|
|
import { ThemeProviderWrapper } from "~/components/deer-flow/theme-provider-wrapper";
|
|
|
|
import { Toaster } from "../components/deer-flow/toaster";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "🦌 DeerFlow",
|
|
description:
|
|
"Deep Exploration and Efficient Research, an AI tool that combines language models with specialized tools for research tasks.",
|
|
icons: [{ rel: "icon", url: "/favicon.ico" }],
|
|
};
|
|
|
|
const geist = Geist({
|
|
subsets: ["latin"],
|
|
variable: "--font-geist-sans",
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en" className={`${geist.variable}`} suppressHydrationWarning>
|
|
<body className="bg-app">
|
|
<ThemeProviderWrapper>{children}</ThemeProviderWrapper>
|
|
<Toaster />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|