mirror of
https://github.com/dogkeeper886/ollama37.git
synced 2025-12-11 16:26:59 +00:00
update website text and design
This commit is contained in:
24
web/app/header.tsx
Normal file
24
web/app/header.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
const navigation = [
|
||||
{ name: 'Github', href: 'https://github.com/jmorganca/ollama' },
|
||||
{ name: 'Download', href: '/download' },
|
||||
]
|
||||
|
||||
export default function Header() {
|
||||
return (
|
||||
<header className="absolute inset-x-0 top-0 z-50">
|
||||
<nav className="mx-auto flex items-center justify-between px-10 py-4">
|
||||
<a className="flex-1 font-bold" href="/">
|
||||
Ollama
|
||||
</a>
|
||||
<div className="flex space-x-8">
|
||||
{navigation.map((item) => (
|
||||
<a key={item.name} href={item.href} className="text-sm leading-6 text-gray-900">
|
||||
{item.name}
|
||||
</a>
|
||||
))}
|
||||
</div>
|
||||
</nav>
|
||||
</header >
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user