This commit is contained in:
eric
2025-11-13 05:05:53 +08:00
parent cbdc65f56e
commit 891af61146
691 changed files with 83952 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import Link from "next/link"
import { cn } from "@/lib/utils"
import Image from "next/image"
export function MainNav({
className,
...props
}: React.HTMLAttributes<HTMLElement>) {
return (
<nav
className={cn("flex items-center space-x-4 lg:space-x-6", className)}
{...props}
>
<Link href="/admin" className="flex items-center space-x-2">
<Image
src="/assets/images/logo@2x.png"
alt="Logo"
width={120}
height={40}
className="h-8 w-auto"
/>
</Link>
</nav>
)
}