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