mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-21 05:14:45 +08:00
refactor: rename to DeerFlow
This commit is contained in:
@@ -6,16 +6,18 @@ import { useState } from "react";
|
||||
import { Markdown } from "./markdown";
|
||||
|
||||
export function Logo() {
|
||||
const [text, setText] = useState("🦌 Deer");
|
||||
const [text, setText] = useState("🦌 DeerFlow");
|
||||
return (
|
||||
<a
|
||||
className="text-sm opacity-70 transition-opacity duration-300 hover:opacity-100"
|
||||
target="_blank"
|
||||
href="https://github.com/bytedance/deer"
|
||||
href="https://github.com/bytedance/deer-flow"
|
||||
onMouseEnter={() =>
|
||||
setText("🦌 **D**eep **E**xploration and **E**fficient **R**esearch")
|
||||
setText(
|
||||
"🦌 **D**eep **E**xploration and **E**fficient **R**esearch Flow",
|
||||
)
|
||||
}
|
||||
onMouseLeave={() => setText("🦌 Deer")}
|
||||
onMouseLeave={() => setText("🦌 DeerFlow")}
|
||||
>
|
||||
<Markdown animate>{text}</Markdown>
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user