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