bingo / src /components /header.tsx
101-5's picture
Duplicate from hf4all/bingo
432aa19
raw
history blame contribute delete
No virus
440 Bytes
import * as React from 'react'
import { UserMenu } from './user-menu'
export async function Header() {
return (
<header className="sticky top-0 z-50 flex items-center justify-between w-full h-16 px-4 border-b shrink-0 bg-gradient-to-b from-background/10 via-background/50 to-background/80 backdrop-blur-xl">
<div className="flex items-center justify-end space-x-2 w-full">
<UserMenu />
</div>
</header>
)
}