20 lines
513 B
TypeScript
20 lines
513 B
TypeScript
import Hero from '@/components/sections/Hero';
|
|
import TechStack from '@/components/sections/TechStack';
|
|
import Projects from '@/components/sections/Projects';
|
|
import About from '@/components/sections/About';
|
|
import Experience from '@/components/sections/Experience';
|
|
import Contact from '@/components/sections/Contact';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<TechStack />
|
|
<Projects />
|
|
<About />
|
|
<Experience />
|
|
<Contact />
|
|
</>
|
|
);
|
|
}
|