mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { Bell, Settings } from 'lucide-react'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Logo } from '@/components/Logo'
|
|
import Link from 'next/link'
|
|
|
|
interface HeaderProps {
|
|
className?: string
|
|
}
|
|
|
|
export default function Header({ className }: HeaderProps) {
|
|
return (
|
|
<header className={`border-b bg-white dark:bg-gray-800 shadow-sm ${className || ''}`}>
|
|
<div className="mx-auto py-4 px-4 sm:px-6 lg:px-8">
|
|
<div className="flex items-center justify-between">
|
|
<Logo />
|
|
<div className="flex items-center">
|
|
{/* <Button variant="ghost" size="icon" className="mr-2"> */}
|
|
{/* <Bell className="h-5 w-5" /> */}
|
|
{/* </Button> */}
|
|
<Link
|
|
href="/settings"
|
|
aria-label='settings'
|
|
>
|
|
<Button variant="ghost" size="icon">
|
|
<Settings className="h-5 w-5" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header >
|
|
)
|
|
}
|
|
|