mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-15 19:04:45 +08:00
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export function Logo() {
|
|
return (
|
|
<a
|
|
className="opacity-70 transition-opacity duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
href="https://github.com/bytedance/deer-flow"
|
|
>
|
|
🦌 DeerFlow
|
|
</a>
|
|
);
|
|
}
|