web: fix typos and add link to discord
This commit is contained in:
parent
d14785738e
commit
820e581ad8
|
@ -1,24 +1,24 @@
|
||||||
|
|
||||||
const navigation = [
|
const navigation = [
|
||||||
{ name: 'Github', href: 'https://github.com/jmorganca/ollama' },
|
{ name: 'Discord', href: 'https://discord.gg/MrfB5FbNWN' },
|
||||||
|
{ name: 'GitHub', href: 'https://github.com/jmorganca/ollama' },
|
||||||
{ name: 'Download', href: '/download' },
|
{ name: 'Download', href: '/download' },
|
||||||
]
|
]
|
||||||
|
|
||||||
export default function Header() {
|
export default function Header() {
|
||||||
return (
|
return (
|
||||||
<header className="absolute inset-x-0 top-0 z-50">
|
<header className='absolute inset-x-0 top-0 z-50'>
|
||||||
<nav className="mx-auto flex items-center justify-between px-10 py-4">
|
<nav className='mx-auto flex items-center justify-between px-10 py-4'>
|
||||||
<a className="flex-1 font-bold" href="/">
|
<a className='flex-1 font-bold' href='/'>
|
||||||
Ollama
|
Ollama
|
||||||
</a>
|
</a>
|
||||||
<div className="flex space-x-8">
|
<div className='flex space-x-8'>
|
||||||
{navigation.map((item) => (
|
{navigation.map(item => (
|
||||||
<a key={item.name} href={item.href} className="text-sm leading-6 text-gray-900">
|
<a key={item.name} href={item.href} className='text-sm leading-6 text-gray-900'>
|
||||||
{item.name}
|
{item.name}
|
||||||
</a>
|
</a>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</header >
|
</header>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue