diff --git a/README.md b/README.md
index c7976ed9..9cf13051 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ Check out [this project's issues](https://github.com/JamesHawkinss/movie-web/iss
- [x] Global state for media objects
- [x] Styling for pages
- [x] loading stream player view + error
- - [ ] video load error, video loading (from actual video player)
+ - [x] video load error, video loading (from actual video player)
- [ ] Series episodes+seasons
- [ ] implement source that are not mp4
- [ ] Subtitles
@@ -61,7 +61,7 @@ Check out [this project's issues](https://github.com/JamesHawkinss/movie-web/iss
- [ ] Get rid of react warnings
- [ ] Implement more scrapers
- [ ] Add 404 page for media (media not found, provider disabled, provider not found) & general (page not found)
-- [ ] Brand tag hover state and cursor
+- [x] Brand tag hover state and cursor
- [ ] Handle disabled providers (continue watching, bookmarks & router)
## After all rewrite code has been written
diff --git a/src/components/layout/BrandPill.tsx b/src/components/layout/BrandPill.tsx
index d51e5104..b2b8eabd 100644
--- a/src/components/layout/BrandPill.tsx
+++ b/src/components/layout/BrandPill.tsx
@@ -1,11 +1,16 @@
-import { Icon, Icons } from 'components/Icon'
-
-export function BrandPill() {
+import { Icon, Icons } from "components/Icon";
+export function BrandPill(props: { clickable?: boolean }) {
return (
-
+
movie-web
- )
+ );
}
diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx
index 375878e6..3e40ff6d 100644
--- a/src/components/layout/Navigation.tsx
+++ b/src/components/layout/Navigation.tsx
@@ -2,7 +2,7 @@ import { IconPatch } from "components/buttons/IconPatch";
import { Icons } from "components/Icon";
import { DISCORD_LINK, GITHUB_LINK } from "mw_constants";
import { ReactNode } from "react";
-import { Link } from "react-router-dom"
+import { Link } from "react-router-dom";
import { BrandPill } from "./BrandPill";
export interface NavigationProps {
@@ -11,19 +11,33 @@ export interface NavigationProps {
export function Navigation(props: NavigationProps) {
return (
-