From 1f55c48a674b140e22f8f5b440fdcc75741bbdc2 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 5 Dec 2025 15:45:52 +0100 Subject: [PATCH] remove hero banner and logo, adjust header scroll threshold to 80% of viewport height --- src/components/Hero.tsx | 12 ------------ src/components/HomeStickyHeader.tsx | 3 ++- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx index 6a5d5f5..ef15afe 100644 --- a/src/components/Hero.tsx +++ b/src/components/Hero.tsx @@ -31,18 +31,6 @@ export function Hero({ className }: HeroProps) { {/* Content */} -
-
- Interested to Take Part?{' '} - - -
-
-
- -

Shaping the future of Augmented Collective Intelligence

diff --git a/src/components/HomeStickyHeader.tsx b/src/components/HomeStickyHeader.tsx index 07a1684..05afd70 100644 --- a/src/components/HomeStickyHeader.tsx +++ b/src/components/HomeStickyHeader.tsx @@ -10,7 +10,8 @@ export function HomeStickyHeader() { useEffect(() => { const handleScroll = () => { - setScrolled(window.scrollY > 0) + const heroThreshold = window.innerHeight * 0.8 + setScrolled(window.scrollY > heroThreshold) } handleScroll()