import { motion } from 'framer-motion' import { useTranslation } from 'react-i18next' import ThreeBackground from './ThreeBackground' export default function Hero() { const { t } = useTranslation() return (
{/* Super Title */} {t('hero.location')} {/* Main Headline */} {t('hero.headline')} {/* Sub-headline */} {t('hero.subheadline')} {/* CTA Buttons */}
) }