mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-25 02:14:36 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m52s
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
'use client'
|
|
|
|
import {Container} from './Container'
|
|
import {ThemeButton} from '@/components/ui/ThemeButton'
|
|
import {DesktopNavigation, MobileNavigation} from '@/components/ui/Navigation'
|
|
|
|
export function Header() {
|
|
return (
|
|
<>
|
|
<header
|
|
className="pointer-events-none relative z-50 flex flex-col">
|
|
<div
|
|
className="top-0 z-10 h-16 pt-6">
|
|
<Container>
|
|
<div className="relative flex gap-4">
|
|
<div className="flex flex-1">
|
|
</div>
|
|
<div className="flex flex-1 justify-end md:justify-center">
|
|
<MobileNavigation className="pointer-events-auto md:hidden"/>
|
|
<DesktopNavigation className="pointer-events-auto hidden md:block"/>
|
|
</div>
|
|
<div className="flex justify-end md:flex-1">
|
|
<div className="pointer-events-auto">
|
|
<ThemeButton/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</div>
|
|
</header>
|
|
</>
|
|
)
|
|
}
|