From: Evgenii Akentev Date: Sat, 18 May 2019 21:10:29 +0000 (+0300) Subject: set title and update logo X-Git-Url: https://git.xn--bdkaa.com/?a=commitdiff_plain;h=064c59667705f39ae9e82982722c805ca7f08fbe;p=where-are-you.py.git set title and update logo --- diff --git a/public/index.html b/public/index.html index dd1ccfd..edf490a 100644 --- a/public/index.html +++ b/public/index.html @@ -19,7 +19,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - React App + Where are you? diff --git a/src/Game.js b/src/Game.js index 2e4a073..b12b8bd 100644 --- a/src/Game.js +++ b/src/Game.js @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import { AppLayout } from './AppLayout'; -import logo from './img/sticker.webp'; +import logo from './img/cat.png'; import { createMap } from './createMap'; import { GameController } from './GameController'; @@ -73,4 +73,4 @@ export class Game extends Component { ) } -} \ No newline at end of file +} diff --git a/src/Welcome.js b/src/Welcome.js index b9d19a6..bd51101 100644 --- a/src/Welcome.js +++ b/src/Welcome.js @@ -1,4 +1,4 @@ -import logo from './img/sticker.webp'; +import logo from './img/cat.png'; import React from 'react'; import { AppLayout } from './AppLayout'; import { Link } from './Link'; @@ -17,4 +17,4 @@ export function Welcome() { ) -} \ No newline at end of file +} diff --git a/src/img/cat.png b/src/img/cat.png new file mode 100644 index 0000000..454d1ba Binary files /dev/null and b/src/img/cat.png differ diff --git a/src/img/sticker.webp b/src/img/sticker.webp deleted file mode 100644 index fa06146..0000000 Binary files a/src/img/sticker.webp and /dev/null differ