니디걸오버도즈

This commit is contained in:
암냥 2025-12-19 00:54:03 +09:00
commit 5be9625af3
No known key found for this signature in database
25 changed files with 208 additions and 29 deletions

View file

@ -3,45 +3,46 @@ import Projects from "@/components/Projects";
import TimelineComponent from "@/components/timeline";
import Top from "@/components/Top";
import Image from "next/image";
import DraggableWindow from "@/components/DraggableWindow";
import ReadmeWindow from "@/components/ReadmeWindow";
export default async function BlogIndex() {
return (
<main className="min-h-screen w-screen">
{/* <section id="top" className="max-w-3xl w-full mx-auto px-4">
<div className="flex flex-row items-center w-full h-full gap-6 mt-8">
<Image
src="/Frame.svg"
alt="logo"
className="w-fit h-fit"
width={30}
height={30}
/>
<h1 className="font-ntype text-3xl">
<a href="mailto:me@imnya.ng">me@imnya.ng</a>
</h1>
</div>
<figure className="my-8 w-full h-auto">
<picture className="block bg-gray-100 rounded-xl aspect-3-2 overflow-hidden image-scale object-shadowed mt-8">
<Image src="/1500x500.jpg" alt="test image" className="object-cover object-center transition-transform duration-300 hover:scale-105" width={3168} height={1344} />
</picture>
</figure>
</section> */}
<Top />
<section id="about" className="h-screen max-w-4xl mx-auto px-4">
<div className=" mt-8">
<h1 className="text-2xl font-bold mb-4 w-full">💕 About</h1>
<p> <strong> </strong> <strong>, </strong> .</p>
<main className="min-h-screen w-screen overflow-y-scroll snap-y snap-mandatory">
<div className="max-w-4xl w-full flex flex-row h-auto mx-auto gap-4 items-center my-8 lg:px-0 px-8">
<Image
src="/Frame.svg"
alt="logo"
className="w-fit h-fit"
width={30}
height={30}
/>
<h1 className="font-ntype text-3xl text-foreground/70">
<a href="mailto:me@imnya.ng">me@imnya.ng</a>
</h1>
</div>
<section id="about" className="w-full snap-start snap-always flex flex-col items-center justify-center px-8 lg:px-0">
<DraggableWindow />
<div className="max-w-4xl w-full">
<p> <strong></strong> <strong></strong> <strong>, </strong> .</p>
<p><strong> </strong> , .</p>
<p><strong> 4 Python</strong> , <strong>TypeScript</strong> .</p>
<p> <strong> </strong> .</p>
<br />
<p> .</p>
<ReadmeWindow />
<br />
<p> .</p>
<Projects />
<br />
<TimelineComponent />
<div className="text-muted-foreground text-sm">
<br />
<p>© 2025 HyunSuk Nam. All rights reserved.</p>
<p> .</p>
<br />
</div>
</div>
<TimelineComponent />
</section>
</main>
);