Files
ZY-Agent/web/src/components/deer-flow/logo.tsx
T
2025-05-02 10:43:14 +08:00

16 lines
308 B
TypeScript

// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
// SPDX-License-Identifier: MIT
import Link from "next/link";
export function Logo() {
return (
<Link
className="opacity-70 transition-opacity duration-300 hover:opacity-100"
href="/"
>
🦌 DeerFlow
</Link>
);
}