Files
deer-flow/web/src/app/_components/logo.tsx
2025-04-30 09:36: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>
);
}