Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
820e581a
Commit
820e581a
authored
Jul 18, 2023
by
Jeffrey Morgan
Browse files
web: fix typos and add link to discord
parent
d1478573
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
web/app/header.tsx
web/app/header.tsx
+10
-10
No files found.
web/app/header.tsx
View file @
820e581a
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
'
},
]
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
=
"/"
>
<
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
"
>
<
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
>
</
header
>
)
}
\ No newline at end of file
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment