Skip to content

Commit

Permalink
Use svg images
Browse files Browse the repository at this point in the history
  • Loading branch information
briangtn committed Feb 24, 2024
1 parent 44fa03e commit 54d6956
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/home/home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
margin-top: 10%;
img {
height: auto;
width: 75%;
width: 50%;
margin: auto;
display: block;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/home/jumbo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ export const HomeJumbo = () => {
return (
<>
<div className="jumbo-home-blood">
<img src="/images/jumbo-blood.png" alt="" />
<img src="/images/jumbo-blood.svg" alt="" />
</div>
<div className="logo-jumbo-home">
<img
alt="logo"
src="/images/logo-long.png"
src="/images/tagline.svg"
/>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/layout/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const Footer: React.FC = () => {
<FooterItem size="full">
<div>
<img
src="/images/logo-long.png"
src="/images/logo-long.svg"
alt="logo devfest"
height="50"
width="150"
Expand Down
2 changes: 1 addition & 1 deletion src/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Layout: React.FC<React.PropsWithChildren> = ({ children }) => {
<CssBaseline />
<Topbar
toggleDrawer={toggleDrawer}
logo="/images/logo-long.png"
logo="/images/logo-long.svg"
/>

<BarMenu isOpen={isOpen} toggleDrawer={toggleDrawer} />
Expand Down

0 comments on commit 54d6956

Please sign in to comment.