Skip to content

Commit

Permalink
EUREKA!!! AFTER 2 YEARSSS!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
ForLoopCodes committed May 5, 2024
1 parent ba533e5 commit aaba8de
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/components/EditNote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export default function EditNote(props) {
<div className="write">
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
Expand Down
9 changes: 7 additions & 2 deletions src/components/Favorites.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,19 @@ export default function Favorites(props) {
<div className="homepage">
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
</div>
<h2>Your Favourites.</h2>
<hr />
<div className="notes-home-container" style={{width: "calc(72vw) !important"}}>
<div
className="notes-home-container"
style={{ width: "calc(72vw) !important" }}
>
{notes
.filter((note) => note.favourite === true)
.map((note) => {
Expand Down
4 changes: 3 additions & 1 deletion src/components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export default function Home(props) {
<div className="homepage">
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
Expand Down
4 changes: 3 additions & 1 deletion src/components/Info.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export default function Info(props) {
<div>
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
Expand Down
4 changes: 3 additions & 1 deletion src/components/NewNote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export default function NewNote() {
<div className="write">
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
Expand Down
4 changes: 3 additions & 1 deletion src/components/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ export default function Settings(props) {
<div className="write">
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
Expand Down
4 changes: 3 additions & 1 deletion src/components/ViewNote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ export default function ViewNote(props) {
<div className="write">
<div className="splash">
<img
src={process.env.PUBLIC_URL + "/images/water-logo.png"}
src={
"https://github.com/ForLoopCodes/water/blob/master/public/images/Water-logo.png?raw=true"
}
alt="logo"
className="splash-logo"
/>
Expand Down

0 comments on commit aaba8de

Please sign in to comment.