Files
deer-flow/web/src/app/_components/logo.tsx

16 lines
308 B
TypeScript
Raw Normal View History

2025-04-17 14:26:41 +08:00
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
// SPDX-License-Identifier: MIT
2025-04-30 09:36:14 +08:00
import Link from "next/link";
2025-04-17 12:02:23 +08:00
export function Logo() {
return (
2025-04-30 09:36:14 +08:00
<Link
2025-04-20 22:30:00 +08:00
className="opacity-70 transition-opacity duration-300 hover:opacity-100"
2025-04-30 09:36:14 +08:00
href="/"
2025-04-17 12:02:23 +08:00
>
🦌 DeerFlow
2025-04-30 09:36:14 +08:00
</Link>
2025-04-17 12:02:23 +08:00
);
}