We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ed7fc commit 829c8b6Copy full SHA for 829c8b6
src/components/page-header.js
@@ -24,6 +24,7 @@ import {
24
import { useSession, signIn, signOut } from 'next-auth/react'
25
import { HamburgerIcon, CloseIcon, AddIcon } from '@chakra-ui/icons'
26
import NavLink from '../components/Link'
27
+import Image from 'next/image'
28
29
const Links = [
30
{ url: '/teams', name: 'Explore' },
@@ -72,9 +73,18 @@ export default function PageHeader() {
72
73
color='brand.600'
74
fontFamily='mono'
75
size='sm'
76
+ display='flex'
77
+ alignItems='center'
78
+ gap={1}
79
as='a'
80
_hover={{ textDecoration: 'none' }}
81
>
82
+ <Image
83
+ src='/static/osmteams_logo--pos.svg'
84
+ alt={'OSM Teams Logo'}
85
+ width='48'
86
+ height='48'
87
+ />
88
osm_teams
89
</Heading>
90
</NavLink>
0 commit comments