Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/AdoptionPage/AdoptionPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Button from '../../components/Button/Button';

const PAGE_TITLE = 'ADOPTION';
const MAIN_TEXT = 'CHOOSE YOUR NEW PET:';
const MAIN_ANIMAL = { pathOrUrl: '../bird.png', alt: 'flying bird' };
const MAIN_ANIMAL = { pathOrUrl: './bird.png', alt: 'flying bird' };
const ANIMAL_TYPES = [
{ type: 'cat', pathOrUrl: 'https://www.petfinder.com/' },
{ type: 'dog', pathOrUrl: 'https://www.petfinder.com/' },
Expand Down
2 changes: 1 addition & 1 deletion src/views/CreditsPage/CreditsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Button from '../../components/Button/Button';
import Bubble from '../../components/Bubble/Bubble';

const PAGE_TITLE = 'CREDITS';
const MAIN_ANIMAL_IMG = { pathOrUrl: '../kangoroo.png', alt: 'kangoroo that tells informations' };
const MAIN_ANIMAL_IMG = { pathOrUrl: './kangoroo.png', alt: 'kangoroo that tells informations' };
const CreditsBubbleContent = {
HEADER_TEXT: 'This is our first project of Coders Camp 2021',
SENTENCE: 'Meet our whole team',
Expand Down
2 changes: 1 addition & 1 deletion src/views/MainPage/MainPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { retrieveAnimalFact } from '../../api/FactsController';
import { onNavigationChange } from '../../components/router/Router';

const PAGE_TITLE = 'ANIMALIADA';
const MAIN_ANIMAL_IMG = { pathOrUrl: '../kangoroo.png', alt: 'kangoroo that tells informations' };
const MAIN_ANIMAL_IMG = { pathOrUrl: './kangoroo.png', alt: 'kangoroo that tells informations' };
const FACT_HEADER = 'Did you know?';
const AdoptionBubbleContent = {
IMG: { pathOrUrl: 'https://placedog.net/150/150?random', alt: 'the animal to adoption' },
Expand Down