feat: user <Link />

This commit is contained in:
Li Xin 2025-04-30 09:36:14 +08:00
parent 4fd6e0c4e0
commit c7e4876347

View File

@ -1,14 +1,15 @@
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
// SPDX-License-Identifier: MIT
import Link from "next/link";
export function Logo() {
return (
<a
<Link
className="opacity-70 transition-opacity duration-300 hover:opacity-100"
target="_blank"
href="https://github.com/bytedance/deer-flow"
href="/"
>
🦌 DeerFlow
</a>
</Link>
);
}