diff --git a/src/components/animation-switcher/index.tsx b/src/components/animation-switcher/index.tsx index 935883b..cc87035 100644 --- a/src/components/animation-switcher/index.tsx +++ b/src/components/animation-switcher/index.tsx @@ -41,7 +41,7 @@ export default function AnimationSwitcher() { return (
setHovering(true)} onMouseLeave={() => setHovering(false)} onClick={handleClick} diff --git a/src/components/background/index.tsx b/src/components/background/index.tsx index bbd9010..fa59c5b 100644 --- a/src/components/background/index.tsx +++ b/src/components/background/index.tsx @@ -333,11 +333,11 @@ const Background: React.FC = ({ const getContainerClasses = () => { if (isIndex) { return mobileOnly - ? "fixed inset-0 -z-10 lg:hidden" + ? "fixed inset-0 -z-10 desk:hidden" : "fixed inset-0 -z-10"; } - const baseClasses = "fixed top-0 bottom-0 hidden lg:block -z-10"; + const baseClasses = "fixed top-0 bottom-0 hidden desk:block -z-10"; return position === "left" ? `${baseClasses} left-0` : `${baseClasses} right-0`; diff --git a/src/components/footer/index.tsx b/src/components/footer/index.tsx index 01a24e0..2139d4f 100644 --- a/src/components/footer/index.tsx +++ b/src/components/footer/index.tsx @@ -12,7 +12,7 @@ export default function Footer({ fixed = false }) { return (
-
+
{footerLinks}
diff --git a/src/components/header/index.tsx b/src/components/header/index.tsx index ca1c6d6..cb6fae5 100644 --- a/src/components/header/index.tsx +++ b/src/components/header/index.tsx @@ -92,7 +92,7 @@ export default function Header({ transparent = false }: { transparent?: boolean `} >