feat: 支持后台管理跳转
This commit is contained in:
parent
29ed8025ed
commit
01f7a19de7
@ -5,6 +5,7 @@ import SignoutButton from "@/components/signout-button";
|
|||||||
import Logo from "@/components/logo";
|
import Logo from "@/components/logo";
|
||||||
import BackButton from "@/components/back-button";
|
import BackButton from "@/components/back-button";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
import { AdminButton } from "@/components/admin-button";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
@ -49,6 +50,7 @@ export default function RootLayout({
|
|||||||
</nav>
|
</nav>
|
||||||
<div className="join">
|
<div className="join">
|
||||||
<BackButton className="btn join-item" />
|
<BackButton className="btn join-item" />
|
||||||
|
<AdminButton className="btn join-item" />
|
||||||
<SignoutButton className="btn join-item" />
|
<SignoutButton className="btn join-item" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -28,7 +28,7 @@ export default function SearchForm({
|
|||||||
{item.name} - {item.artist}
|
{item.name} - {item.artist}
|
||||||
</span>
|
</span>
|
||||||
<button className="text-green-500 hover:text-green-700">
|
<button className="text-green-500 hover:text-green-700">
|
||||||
Add
|
添加
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
13
components/admin-button.tsx
Normal file
13
components/admin-button.tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
export function AdminButton({ className }: { className?: string | undefined }) {
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
className={className}
|
||||||
|
target="_blank"
|
||||||
|
href="https://tachy.daoyoucloud.com/apps/danmu-sim/admin"
|
||||||
|
>
|
||||||
|
后台管理
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user