mirror of
https://github.com/beilunyang/moemail.git
synced 2025-09-27 03:46:03 +08:00
19 lines
621 B
TypeScript
19 lines
621 B
TypeScript
import { SignButton } from "@/components/auth/sign-button"
|
|
import { ThemeToggle } from "@/components/theme/theme-toggle"
|
|
import { Logo } from "@/components/ui/logo"
|
|
|
|
export function Header() {
|
|
return (
|
|
<header className="fixed top-0 left-0 right-0 z-50 h-16 bg-background/80 backdrop-blur-sm border-b">
|
|
<div className="container mx-auto h-full px-4">
|
|
<div className="h-full flex items-center justify-between">
|
|
<Logo />
|
|
<div className="flex items-center gap-4">
|
|
<ThemeToggle />
|
|
<SignButton />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
)
|
|
}
|