portfolio/src/app/page.tsx

12 lines
358 B
TypeScript
Raw Normal View History

2026-03-22 14:14:05 +00:00
import Image from "next/image";
export default function Home() {
return (
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
2026-06-18 18:21:43 +00:00
2026-03-22 14:14:05 +00:00
</main>
</div>
);
}