import React, { useEffect, useRef, useState } from 'react'; export default function Header() { const fullText = 'DeepEx AI'; const [typed, setTyped] = useState(''); const i = useRef(0); useEffect(() => { i.current = 0; const interval = setInterval(() => { if (i.current <= fullText.length) { setTyped(fullText.slice(0, i.current)); i.current=i.current + 1; } else { clearInterval(interval); } }, 100); return () => clearInterval(interval); }, []); return (

🔍 {typed}

AI Powered Deepfake Detection
Using Vision Transformers
); }