diff --git a/frontend/public/images/icons/Action.webp b/frontend/public/images/icons/Action.webp new file mode 100644 index 0000000..caf71e0 Binary files /dev/null and b/frontend/public/images/icons/Action.webp differ diff --git a/frontend/public/images/icons/Horror.png b/frontend/public/images/icons/Horror.png new file mode 100644 index 0000000..63928f7 Binary files /dev/null and b/frontend/public/images/icons/Horror.png differ diff --git a/frontend/public/images/icons/Psychological.png b/frontend/public/images/icons/Psychological.png new file mode 100644 index 0000000..9cd61a6 Binary files /dev/null and b/frontend/public/images/icons/Psychological.png differ diff --git a/frontend/public/images/icons/R-18.png b/frontend/public/images/icons/R-18.png new file mode 100644 index 0000000..20b6ad6 Binary files /dev/null and b/frontend/public/images/icons/R-18.png differ diff --git a/frontend/public/images/icons/Shooter.png b/frontend/public/images/icons/Shooter.png new file mode 100644 index 0000000..551d565 Binary files /dev/null and b/frontend/public/images/icons/Shooter.png differ diff --git a/frontend/src/assets/styles/sidebar.css b/frontend/src/assets/styles/sidebar.css index 02517f8..97459f0 100644 --- a/frontend/src/assets/styles/sidebar.css +++ b/frontend/src/assets/styles/sidebar.css @@ -10,4 +10,14 @@ --sideBar-DarkBG: black; --sideBar-DarkText: white; } + +.style { + font-size: 2em; + font-weight: bold; +} + +.category-style { + font-size: 1.75em; + font-weight: bold; +} \ No newline at end of file diff --git a/frontend/src/components/Layout/Navbar.tsx b/frontend/src/components/Layout/Navbar.tsx index 71ad8a0..1f5c46a 100644 --- a/frontend/src/components/Layout/Navbar.tsx +++ b/frontend/src/components/Layout/Navbar.tsx @@ -77,10 +77,10 @@ const Navbar: React.FC = ({ extraClasses={`absolute ${showSideBar ? `fixed top-[20px] left-[20px] p-2 text-[1.5rem] text-white hover:text-white bg-black/30 hover:bg-purple-500/80 rounded-md border border-gray-300 hover:border-white h over:border-b-4 hover:border-l-4 active:border-b-2 active:border-l-2 transition-all ` : - "top-[75px] left-[20px]" + "top-[75px] left-[20px]" } transition-all duration-300 z-[99]`} > - +
= () => { setTriggerAnimation(false); // Reset animation setTimeout(() => setTriggerAnimation(true), 0); // Re-trigger animation }; + const testStreamer: Record = { + "Markiplier": "Slink1", + "Jacksepticeye": "Slink2", + "8-BitRyan": "Slink3", + }; - return ( + + ); }; export default Sidebar; diff --git a/frontend/src/components/Layout/Theme.tsx b/frontend/src/components/Layout/Theme.tsx index 510c538..1299083 100644 --- a/frontend/src/components/Layout/Theme.tsx +++ b/frontend/src/components/Layout/Theme.tsx @@ -8,14 +8,16 @@ interface ThemeProps { const Theme: React.FC = ({ onClick }) => { return ( +
+
); };