asdfasdf
This commit is contained in:
parent
2729f3c1ce
commit
bfda6c0aef
5 changed files with 693 additions and 1 deletions
10
src/components/Home/Project.tsx
Normal file
10
src/components/Home/Project.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue