// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates // SPDX-License-Identifier: MIT import { useState } from "react"; import { Markdown } from "./markdown"; export function Logo() { const [text, setText] = useState("🦌 Deer"); return ( setText("🦌 **D**eep **E**xploration and **E**fficient **R**esearch") } onMouseLeave={() => setText("🦌 Deer")} > {text} ); }