37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
"use client"
|
|
|
|
import { Gamepad2 } from "lucide-react"
|
|
import { ConfigButton } from "./config-button"
|
|
import { CurrentTime } from "./current-time"
|
|
|
|
function Header() {
|
|
return (
|
|
<header className="wz-screen-header px-6 py-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center space-x-4">
|
|
<div className="flex items-center space-x-3">
|
|
<div className="relative">
|
|
<Gamepad2 className="w-10 h-10 text-white/90 relative z-10" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-white">
|
|
玩值电竞私域银行
|
|
</h1>
|
|
<p className="text-sm text-white/60">电竞明星私域流量数字资产管理平台</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-4">
|
|
<CurrentTime />
|
|
<ConfigButton />
|
|
</div>
|
|
</div>
|
|
</header>
|
|
)
|
|
}
|
|
|
|
export { Header }
|
|
|
|
export default Header
|