// 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 {about}; }; AboutTab.icon = BadgeInfo; AboutTab.displayName = "About";