44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
'use client'
|
|
|
|
import * as React from 'react'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
import { buttonVariants } from '@/components/ui/button'
|
|
import { IconGitHub, IconExternalLink } from '@/components/ui/icons'
|
|
import dynamic from 'next/dynamic'
|
|
|
|
const ThemeToggle = dynamic(
|
|
() => import('@/components/theme-toggle').then(x => x.ThemeToggle),
|
|
{ ssr: false }
|
|
)
|
|
|
|
export 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">
|
|
<ThemeToggle />
|
|
</div>
|
|
<div className="flex items-center justify-end space-x-2">
|
|
<a
|
|
target="_blank"
|
|
href="https://github.com/TabbyML/tabby"
|
|
rel="noopener noreferrer"
|
|
className={cn(buttonVariants({ variant: 'outline' }))}
|
|
>
|
|
<IconGitHub />
|
|
<span className="hidden ml-2 md:flex">GitHub</span>
|
|
</a>
|
|
<a
|
|
target="_blank"
|
|
href="/swagger-ui"
|
|
rel="noopener noreferrer"
|
|
className={cn(buttonVariants({ variant: 'outline' }))}
|
|
>
|
|
<IconExternalLink />
|
|
<span className="hidden ml-2 md:flex">OpenAPI</span>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
)
|
|
}
|