This commit is contained in:
암냥 2025-02-12 02:10:12 +09:00
commit bfda6c0aef
5 changed files with 693 additions and 1 deletions

View file

@ -0,0 +1,10 @@
export default function Project() {
return (
<div className="w-full h-screen flex flex-col items-center justify-center">
<div className="w-full md:w-[50%] p-4">
<h1 className="text-2xl font-bold">Project</h1>
<p className="mt-2">Soon</p>
</div>
</div>
);
}

View file

@ -17,6 +17,13 @@ const events = [
category: "Award",
link: "https://layer7.kr"
},
{
date: "2025-01-10",
description:
"선린인터넷고 중학생 특별교육 이수",
category: "Education",
link: "https://layer7.kr"
},
{
date: "2024-12-14",
description:

View file

@ -6,6 +6,7 @@ import Timeline from "@/components/Home/Timeline";
import './Home.css';
import Contact from '@/components/Home/Contact';
import Project from '@/components/Home/Project';
export default function Home() {
const location = useLocation();
@ -27,6 +28,9 @@ export default function Home() {
<div id="about" className="bg-background text-foreground w-full h-screen flex items-center justify-center section">
<About />
</div>
<div id="project" className="bg-background text-foreground w-full h-screen flex items-center justify-center section">
<Project />
</div>
<div id="timeline" className="bg-background text-foreground w-full h-screen flex items-center justify-center section">
<Timeline />
</div>