From d19cdace19e63ba4064ab5fe91e11bccd0c678dc Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Thu, 2 Jul 2026 23:27:58 -0400 Subject: [PATCH] brand: feed empty-state hero says Eranos, not leftover Agora MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit LandingHero (shown as the splash above the feed) hardcoded the fork-original 'ÁGORA' brand name instead of config.appName like TopNav does. Co-Authored-By: Claude Fable 5 --- src/components/LandingHero.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/LandingHero.tsx b/src/components/LandingHero.tsx index f93802e6..a9425620 100644 --- a/src/components/LandingHero.tsx +++ b/src/components/LandingHero.tsx @@ -2,12 +2,15 @@ import { Link } from 'react-router-dom'; import { AgoraBoltIcon } from '@/components/icons/AgoraBoltIcon'; import { Button } from '@/components/ui/button'; +import { useAppContext } from '@/hooks/useAppContext'; interface LandingHeroProps { onJoinClick: () => void; } export function LandingHero({ onJoinClick }: LandingHeroProps) { + const { config } = useAppContext(); + return (
{/* ── Hero Header ── */} @@ -17,8 +20,8 @@ export function LandingHero({ onJoinClick }: LandingHeroProps) {
-

- ÁGORA +

+ {config.appName}

Power to the people