File size: 1,455 Bytes
309d3d6 |
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 |
import Link from "next/link";
import Image from "next/image";
import Logo from "./Logo";
export default function Header() {
return (
<nav className=" flex w-full justify-center py-4 items-center
border-b border-gray-300 backdrop-blur-2xl font-mono text-sm px-4 lg:px-0">
<div className="max-w-3xl flex w-full items-center justify-between">
<div className="font-medium text-xl text-indigo-900 flex items-center gap-2">
<Logo className="w-4 h-4" />
<Link href='/'>
Suno API
</Link>
</div>
<div className="flex items-center justify-center gap-1 text-sm font-light text-indigo-900/90">
<p className="p-2 lg:px-6 lg:py-3 rounded-full flex justify-center items-center
lg:hover:bg-indigo-300 duration-200
">
<Link href="/">
Get Started
</Link>
</p>
<p className="p-2 lg:px-6 lg:py-3 rounded-full flex justify-center items-center
lg:hover:bg-indigo-300 duration-200
">
<Link href="/docs">
API Docs
</Link>
</p>
</div>
</div>
</nav>
);
}
|