Skip to content

Commit 569b503

Browse files
committed
minor changes
1 parent 7cd5d6d commit 569b503

File tree

6 files changed

+38
-6
lines changed

6 files changed

+38
-6
lines changed

public/favicon.ico

-2.66 KB
Binary file not shown.

public/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<meta name="theme-color" content="#000000" />
9-
<meta name="description" content="Web site created using create-react-app" />
10-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
9+
<meta name="description" content="Play puzzles based on country information" />
1110
<!--
1211
manifest.json provides metadata used when your web app is installed on a
1312
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

public/wiw.svg

Lines changed: 17 additions & 0 deletions
Loading

public/wiw1.svg

Lines changed: 10 additions & 0 deletions
Loading

src/components/Header/Header.jsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import {
32
MoonIcon,
43
PuzzlePieceIcon as PuzzleIcon,
@@ -7,6 +6,7 @@ import {
76
MoonIcon as MoonIconSolid,
87
PuzzlePieceIcon as PuzzleIconSolid,
98
} from "@heroicons/react/24/solid";
9+
import React from "react";
1010
import { Link } from "react-router-dom";
1111

1212
export const Header = ({ dark, setDark }) => {
@@ -22,7 +22,12 @@ export const Header = ({ dark, setDark }) => {
2222
return (
2323
<header className="fixed w-full text-sm lg:text-base transition-colors flex flex-row h-20 items-center bg-white/10 backdrop-blur-sm dark:border-0 shadow-lg px-5 lg:px-10 dark:text-white dark:bg-dark-mode-ligth/20">
2424
<div className="w-full">
25-
<Link to={"/"} className="font-bold">
25+
<Link to={"/"} className="font-bold flex flex-row items-center gap-2">
26+
<img
27+
src={dark ? "/wiw1.svg" : "wiw.svg"}
28+
alt="Where in the world logo"
29+
className={`w-auto h-8 lg:h-10 ${dark ? "bg-white" : "bg-black"} rounded-full p-1 background`}
30+
/>
2631
Where in the world?
2732
</Link>
2833
</div>

src/index.css

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)