Skip to content

Commit

Permalink
style: change name and logo in navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenakh97 committed Apr 25, 2024
1 parent fea9075 commit 1ba81a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 112 deletions.
100 changes: 0 additions & 100 deletions public/logo.svg

This file was deleted.

16 changes: 4 additions & 12 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { useAppConfig } from 'hooks/useAppConfig'
import { useState } from 'react'
import { Link } from 'react-router-dom'
import stravaLogo from '/api_logo_pwrdBy_strava_stack_white.svg'
import logo from '/logo-with-text.svg'

export const Navbar = () => {
const {
Expand All @@ -32,13 +31,13 @@ export const Navbar = () => {
<div className="container-fluid">
<Link className="navbar-brand d-flex align-items-center" to="/">
<img
src={logo}
alt={name}
src={stravaLogo}
alt={'name'}
width="100"
height="24"
height="34"
className="d-inline-block align-text-top me-1"
/>
<span className={styles.assetName}>{shortName}</span>
<span className={styles.assetName}>The Nordic Challenge</span>
</Link>
<button
className="navbar-toggler"
Expand Down Expand Up @@ -93,13 +92,6 @@ export const Navbar = () => {
</ul>
</div>
</div>
<img
src={stravaLogo}
alt={'name'}
width="100"
height="34"
className="d-inline-block align-text-top me-1"
/>
</div>
</nav>
</header>
Expand Down

0 comments on commit 1ba81a0

Please sign in to comment.