import React from 'react'; import { Terminal } from 'lucide-react'; import TerminalButton from './components/TerminalButton'; import ProfileContent from './components/ProfileContent'; import ProjectsContent from './components/ProjectsContent'; function App() { const [activeSection, setActiveSection] = React.useState('about'); return (
{/* TV Container */}
{/* TV Frame */}
{/* Screen Container with Convex Effect */}
{/* Convex Screen Effect */}
{/* Screen Content */}
echo "Hey there!"
{/* Split Screen Container */}
{/* Left Column - Navigation */}
setActiveSection('about')} isSelected={activeSection === 'about'} > ABOUT setActiveSection('projects')} isSelected={activeSection === 'projects'} > PROJECTS setActiveSection('skills')} isSelected={activeSection === 'skills'} > SKILLS setActiveSection('contact')} isSelected={activeSection === 'contact'} > CONTACT setActiveSection('resume')} isSelected={activeSection === 'resume'} > RESUME
{/* Vertical Separator */}
{/* Right Column - Content */}
{activeSection === 'about' && } {activeSection === 'projects' && ( )}
{/* Scan Line Effect */}
{/* Screen Glare */}
{/* TV Controls */}
{/* TV Speaker Grills */}
{[...Array(10)].map((_, i) => (
))}
); } export default App;