import { Link } from 'react-router-dom'; import { motion } from 'motion/react'; import { useTranslation } from '../../i18n'; import { useTypingEffect } from '../../hooks'; import { Scene3D } from '../effects'; import { Button } from '../ui'; import styles from './Hero.module.css'; export function Hero() { const { t } = useTranslation(); const { text } = useTypingEffect({ words: t.hero.rotatingWords, typingSpeed: 80, deletingSpeed: 40, pauseDuration: 2500, }); return (
{t.hero.greeting} {t.hero.company} {t.hero.tagline} {text} |
); }