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

18 lines
438 B
TypeScript

import { About } from '@/components/about';
import { Contacts } from '@/components/contacts';
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 />
<Contacts />
</main>
);
}