imnya.ng/src/app/page.tsx
imnyang aaf3ed3b8c
Some checks failed
Web Build / build (push) Failing after 55s
wow
2026-04-26 17:14:32 +09:00

51 lines
1.9 KiB
TypeScript

import Projects from "@/components/Projects";
import TimelineComponent from "@/components/timeline";
import Image from "next/image";
import ReadmeWindow from "@/components/ReadmeWindow";
import Contact from "@/components/Contact";
import DDayComponent from "@/components/dday";
export default async function Page() {
return (
<main className="min-h-screen w-screen overflow-y-scroll snap-y snap-mandatory relative">
<div className="max-w-3xl w-full flex flex-row h-auto mx-auto my-8 items-center justify-between lg:px-0 px-8">
<div className="flex flex-row gap-4 items-center">
<Image
src="/Frame.svg"
alt="logo"
className="w-fit h-fit"
width={30}
height={30}
/>
<div>
<h1 className="font-ntype text-3xl text-foreground/70">
<a href="mailto:me@imnya.ng">me@imnya.ng</a>
</h1>
</div>
</div>
<DDayComponent targetDate={new Date('2010-11-08T03:00:00+09:00')} label="🎂 Birth" />
</div>
<section id="about" className="w-full snap-start snap-always flex flex-col items-center justify-center mx-auto px-8 lg:px-0">
<div className="max-w-3xl w-full">
<Contact />
<br />
<p> .</p>
<p> , .</p>
<p> .</p>
<br/>
<p id="a" className="select-none text-transparent text-[1pt]"></p>
<Projects />
<br />
<TimelineComponent />
<div className="text-muted-foreground text-sm">
<br />
<p>© 2026 imnyanle.g. All rights reserved.</p>
<br />
</div>
</div>
</section>
</main>
);
}