CoolFace
Apppublic

FLASHback1/bingo

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
header.tsx13 linesDownload Raw Back to components
1import * as React from 'react'2import { UserMenu } from './user-menu'3 4export async function Header() {5  return (6    <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">7      <div className="flex items-center justify-end space-x-2 w-full">8        <UserMenu />9      </div>10    </header>11  )12}13