Files
deer-flow/web/src/app/_components/logo.tsx
2025-04-28 10:07:36 +08:00

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>
);
}