diff --git a/src/components/board/Officer.astro b/src/components/board/Officer.astro index eed91fc..f245ac7 100644 --- a/src/components/board/Officer.astro +++ b/src/components/board/Officer.astro @@ -21,10 +21,10 @@ const {name, position, picture, email} = Astro.props;
-

+

{name}

-
+
{position}
diff --git a/src/components/core/InView.astro b/src/components/core/InView.astro index 6d9e17e..535e23e 100644 --- a/src/components/core/InView.astro +++ b/src/components/core/InView.astro @@ -3,9 +3,11 @@ entries.forEach((entry) => { if (entry.isIntersecting) { entry.target.classList.add("in-view"); + entry.target.classList.remove("opacity-0"); console.log("Added 'in-view' class to:", entry.target); } else { entry.target.classList.remove("in-view"); + entry.target.classList.add("opacity-0"); console.log("Removed 'in-view' class from:", entry.target); } }); diff --git a/src/components/events/EventTitle.astro b/src/components/events/EventTitle.astro index dde6f46..bd122ba 100644 --- a/src/components/events/EventTitle.astro +++ b/src/components/events/EventTitle.astro @@ -8,7 +8,8 @@ import { LiaDotCircle } from "react-icons/lia"; Event Page Background
more details

Quarterly Project