chore: change project name

This commit is contained in:
He Tao
2025-04-17 15:47:06 +08:00
parent fd85115f6f
commit b2f14d1737
9 changed files with 33 additions and 33 deletions

View File

@@ -6,16 +6,16 @@ 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")
}
onMouseLeave={() => setText("🦌 Deer")}
onMouseLeave={() => setText("🦌 DeerFlow")}
>
<Markdown animate>{text}</Markdown>
</a>