diff --git a/src/assets/games.svg b/src/assets/games.svg new file mode 100644 index 0000000..5179f6b --- /dev/null +++ b/src/assets/games.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 2ebc128..1fa720d 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,6 +1,8 @@ import { useLocation } from "preact-iso"; import LinkSvg from "../assets/link.svg"; import LogoSvg from "../assets/logo.svg"; +import GamesSvg from '../assets/games.svg'; + import { useState, useEffect } from "preact/hooks" export function Header() { @@ -10,10 +12,67 @@ export function Header() {
); diff --git a/tailwind.config.js b/tailwind.config.js index 6223217..9b9fdcd 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -7,8 +7,9 @@ export default { theme: { colors: { "primary": "var(--background-primary)", - "text-color": "var(--navbar-text-color)", - "navbar-color": "var(--navbar-color)" + "navbar-text-color": "var(--navbar-text-color)", + "navbar-color": "var(--navbar-color)", + "text-color": "var(--navbar-link-color)" }, extend: {}, },