Files
portfolio-v2/app/page.tsx
2026-03-16 21:25:53 +01:00

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 />
</>
);
}