Spaces:
Sleeping
Sleeping
File size: 1,985 Bytes
710adbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
"use client";
import {
Link,
Navbar,
NavbarBrand,
NavbarContent,
NavbarItem,
} from "@nextui-org/react";
import { GithubIcon, HeyGenLogo } from "./Icons";
import { ThemeSwitch } from "./ThemeSwitch";
export default function NavBar() {
return (
<Navbar className="w-full">
<NavbarBrand>
<Link isExternal aria-label="HeyGen" href="https://app.heygen.com/">
<HeyGenLogo />
</Link>
<div className="bg-gradient-to-br from-sky-300 to-indigo-500 bg-clip-text ml-4">
<p className="text-xl font-semibold text-transparent">
tvam policy assistant
</p>
</div>
</NavbarBrand>
{/* <NavbarContent justify="center">
<NavbarItem className="flex flex-row items-center gap-4">
<Link
isExternal
color="foreground"
href="https://labs.heygen.com/interactive-avatar"
>
Avatars
</Link>
<Link
isExternal
color="foreground"
href="https://docs.heygen.com/reference/list-voices-v2"
>
Voices
</Link>
<Link
isExternal
color="foreground"
href="https://docs.heygen.com/reference/new-session-copy"
>
API Docs
</Link>
<Link
isExternal
color="foreground"
href="https://help.heygen.com/en/articles/9182113-interactive-avatar-101-your-ultimate-guide"
>
Guide
</Link>
<Link
isExternal
aria-label="Github"
href="https://github.com/HeyGen-Official/StreamingAvatarSDK"
className="flex flex-row justify-center gap-1 text-foreground"
>
<GithubIcon className="text-default-500" />
SDK
</Link>
<ThemeSwitch />
</NavbarItem> */}
{/* </NavbarContent> */}
</Navbar>
);
}
|