deerflow2/web/src/app/settings/tabs/about-tab.tsx

16 lines
403 B
TypeScript

// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
// SPDX-License-Identifier: MIT
import { BadgeInfo } from "lucide-react";
import { Markdown } from "~/components/deer-flow/markdown";
import about from "./about.md";
import type { Tab } from "./types";
export const AboutTab: Tab = () => {
return <Markdown>{about}</Markdown>;
};
AboutTab.icon = BadgeInfo;
AboutTab.displayName = "About";