portfolio/app/page.tsx
2024-12-08 20:17:17 +03:00

16 lines
369 B
TypeScript

import { About } from '@/components/about';
import { Person } from '@/components/person';
import { Skills } from '@/components/skills';
import { Work } from '@/components/work';
export default function HomePage() {
return (
<main className="flex min-h-dvh flex-col space-y-10">
<Person />
<About />
<Work />
<Skills />
</main>
);
}