Skip to content

Commit 829c8b6

Browse files
committed
Add logo to page header
1 parent f0ed7fc commit 829c8b6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/components/page-header.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import {
2424
import { useSession, signIn, signOut } from 'next-auth/react'
2525
import { HamburgerIcon, CloseIcon, AddIcon } from '@chakra-ui/icons'
2626
import NavLink from '../components/Link'
27+
import Image from 'next/image'
2728

2829
const Links = [
2930
{ url: '/teams', name: 'Explore' },
@@ -72,9 +73,18 @@ export default function PageHeader() {
7273
color='brand.600'
7374
fontFamily='mono'
7475
size='sm'
76+
display='flex'
77+
alignItems='center'
78+
gap={1}
7579
as='a'
7680
_hover={{ textDecoration: 'none' }}
7781
>
82+
<Image
83+
src='/static/osmteams_logo--pos.svg'
84+
alt={'OSM Teams Logo'}
85+
width='48'
86+
height='48'
87+
/>
7888
osm_teams
7989
</Heading>
8090
</NavLink>

0 commit comments

Comments
 (0)