diff --git a/public/images/exit_fullscreen.png b/public/images/exit_fullscreen.png new file mode 100644 index 0000000..032309c Binary files /dev/null and b/public/images/exit_fullscreen.png differ diff --git a/public/images/fullscreen.png b/public/images/fullscreen.png new file mode 100644 index 0000000..686beca Binary files /dev/null and b/public/images/fullscreen.png differ diff --git a/src/components/auth/client/Sign_Out.tsx b/src/components/auth/client/Sign_Out.tsx index 1e6db4c..fe72f20 100644 --- a/src/components/auth/client/Sign_Out.tsx +++ b/src/components/auth/client/Sign_Out.tsx @@ -15,10 +15,8 @@ export default function Sign_Out() { className="rounded-full border-2 border-white m-auto mr-1 md:mr-2 max-w-[25px] md:max-w-[35px]" /> - @@ -26,5 +24,3 @@ export default function Sign_Out() { ); } }; - - // diff --git a/src/components/ui/Header.tsx b/src/components/ui/Header.tsx index 2ba9e55..a4829a6 100644 --- a/src/components/ui/Header.tsx +++ b/src/components/ui/Header.tsx @@ -8,11 +8,11 @@ export default function Header() { const { tvMode } = useTVMode(); if (tvMode) { return ( -
-
- < TV_Toggle /> -
+
+
+ < TV_Toggle />
+
); } else { return ( diff --git a/src/components/ui/TV_Toggle.tsx b/src/components/ui/TV_Toggle.tsx index 53b66ac..0c75a48 100644 --- a/src/components/ui/TV_Toggle.tsx +++ b/src/components/ui/TV_Toggle.tsx @@ -1,5 +1,5 @@ "use client"; -import { Switch } from "~/components/ui/shadcn/switch"; +import Image from "next/image"; import { useTVMode } from "~/components/context/TVModeContext"; import { useSession } from "next-auth/react"; @@ -8,12 +8,16 @@ export default function TV_Toggle() { const { data: session } = useSession(); if (!session) return
; return ( - + ); }