chore: merge with web UI project

This commit is contained in:
Li Xin
2025-04-17 12:02:23 +08:00
parent 3aebb67e2b
commit fd7a803753
58 changed files with 10290 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { useState } from "react";
import { Markdown } from "./markdown";
export function Logo() {
const [text, setText] = useState("🦌 Deer");
return (
<a
className="text-sm opacity-70 transition-opacity duration-300 hover:opacity-100"
target="_blank"
href="https://github.com/bytedance/deer"
onMouseEnter={() =>
setText("🦌 **D**eep **E**xploration and **E**fficient **R**esearch")
}
onMouseLeave={() => setText("🦌 Deer")}
>
<Markdown animate>{text}</Markdown>
</a>
);
}