Skip to content

Commit

Permalink
change base pathg for image once again
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrelam committed Jun 24, 2023
1 parent 65b14e7 commit d01aeea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en" data-theme="bumblebee">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="public/detective.png" />
<link rel="icon" type="image/png" href="detective.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blame Detective</title>
</head>
Expand Down
6 changes: 1 addition & 5 deletions src/components/BobLoader.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
export function BobLoader() {
return (
<div className="flex flex-col items-center mt-24">
<img
src="public/sponge-bob-looking.gif"
alt="loading gif"
className="m-auto"
/>
<img src="sponge-bob-looking.gif" alt="loading gif" className="m-auto" />
<h2 className="text-2xl mt-4 text-secondary font-bold">
Bob is looking for your files...
</h2>
Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function NavBar({ tab, setTab }: Props) {
onClick={() => setTab("search")}
>
<img
src="public/detective.png"
src="detective.png"
alt="moving detective microsft emoji"
className="w-12 h-12"
/>
Expand Down

0 comments on commit d01aeea

Please sign in to comment.