refactor: extract components folder

This commit is contained in:
Li Xin
2025-05-02 10:43:14 +08:00
parent 18d896d15d
commit fdfc607747
44 changed files with 44 additions and 44 deletions
+15
View File
@@ -0,0 +1,15 @@
// 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>
);
}