portfolio/app/page.tsx
2024-12-08 19:31:57 +03:00

12 lines
249 B
TypeScript

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