()
| 1 | import Image from "next/image"; |
| 2 | |
| 3 | export default function Header() { |
| 4 | return ( |
| 5 | <div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm lg:flex"> |
| 6 | <p className="fixed left-0 top-0 flex w-full justify-center border-b border-gray-300 bg-gradient-to-b from-zinc-200 pb-6 pt-8 backdrop-blur-2xl dark:border-neutral-800 dark:bg-zinc-800/30 dark:from-inherit lg:static lg:w-auto lg:rounded-xl lg:border lg:bg-gray-200 lg:p-4 lg:dark:bg-zinc-800/30"> |
| 7 | Get started by editing |
| 8 | <code className="font-mono font-bold">app/page.tsx</code> |
| 9 | </p> |
| 10 | <div className="fixed bottom-0 left-0 mb-4 flex h-auto w-full items-end justify-center bg-gradient-to-t from-white via-white dark:from-black dark:via-black lg:static lg:w-auto lg:bg-none lg:mb-0"> |
| 11 | <a |
| 12 | href="https://www.llamaindex.ai/" |
| 13 | className="flex items-center justify-center font-nunito text-lg font-bold gap-2" |
| 14 | > |
| 15 | <span>Built by LlamaIndex</span> |
| 16 | <Image |
| 17 | className="rounded-xl" |
| 18 | src="/llama.png" |
| 19 | alt="Llama Logo" |
| 20 | width={40} |
| 21 | height={40} |
| 22 | priority |
| 23 | /> |
| 24 | </a> |
| 25 | </div> |
| 26 | </div> |
| 27 | ); |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected