Skip to content

Commit 61ce95a

Browse files
committed
fix logo path
1 parent 239e03f commit 61ce95a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Footer: FC = () => (
99
<div className="d-flex flex-row align-items-center">
1010
<Link to="/" className="flex-shrink-0 me-2 p-0">
1111
<img
12-
src={import.meta.env.BASE_URL + "/deepgit_logo.png"}
12+
src={import.meta.env.BASE_URL + "deepgit_logo.png"}
1313
alt="DeepGit logo"
1414
style={{ height: "1.2em" }}
1515
className="me-1"

src/views/EditionPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const EditionPanel: FC<{ isExpanded: boolean }> = ({ isExpanded }) => {
113113

114114
<h1 className="fs-4 mt-4 mb-4">
115115
<img
116-
src={import.meta.env.BASE_URL + "/deepgit_logo.png"}
116+
src={import.meta.env.BASE_URL + "deepgit_logo.png"}
117117
alt="DeepGit logo"
118118
style={{ height: "1em", filter: "invert(1)" }} // Inverts colors (turns black to white)
119119
className="me-1 mb-1"

src/views/HomeView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const HomeView: FC = () => {
3636
<main className="home-view">
3737
<div className="title-block">
3838
<div className="text-center">
39-
<img src={import.meta.env.BASE_URL + "/deepgit_logo.png"} alt="DeepGit Logo" className="mb-3" style={{ width: "120px", height: "auto" }} />
39+
<img src={import.meta.env.BASE_URL + "deepgit_logo.png"} alt="DeepGit Logo" className="mb-3" style={{ width: "120px", height: "auto" }} />
4040
</div>
4141
<h1 className="mb-4">
4242
<span className="position-relative">

0 commit comments

Comments
 (0)