mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-05-03 18:50:43 +08:00
16 lines
308 B
TypeScript
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>
|
|
);
|
|
}
|