Skip to content

Commit

Permalink
feat: add Logo component
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Suhyeong Lee <devleesche@gmail.com>
  • Loading branch information
manvinderjit and sounmind committed Feb 12, 2025
1 parent b466922 commit c751d4c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Binary file added public/torontojs-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/components/Logo/Logo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.logo img {
height: 128px;
width: 128px;
}
9 changes: 9 additions & 0 deletions src/components/Logo/Logo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import './Logo.css'

const Logo = () => (
<picture className="logo">
<img src="/torontojs-logo.png" alt="TorontoJS Logo" />
</picture>
);

export default Logo

0 comments on commit c751d4c

Please sign in to comment.