8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<main className="flex items-center justify-center h-screen">
|
||
|
|
This is portfolio
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|