import { useState } from 'react' import type { Phase } from './types' import { BootSequence } from './components/BootSequence' import { ECGAnimation } from './components/ECGAnimation' import { FloatingNav } from './components/FloatingNav' import { Hero } from './components/Hero' import { Skills } from './components/Skills' import { Experience } from './components/Experience' import { Education } from './components/Education' import { Projects } from './components/Projects' import { Contact } from './components/Contact' import { Footer } from './components/Footer' function App() { const [phase, setPhase] = useState('boot') return (
{phase === 'boot' && ( setPhase('ecg')} /> )} {phase === 'ecg' && ( setPhase('content')} /> )} {phase === 'content' && ( <>
) } export default App