-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
177 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
"use client"; | ||
|
||
import Image from "next/image"; | ||
|
||
export default function NotFound() { | ||
return ( | ||
<div className="lg:max-w-2000 flex h-screen w-full min-w-400 shrink-0 flex-col items-center justify-center bg-gradient-to-b from-green-100 via-green-50 to-white px-4 py-8 md:px-12 lg:px-16"> | ||
<div className="bg-gray w-full min-w-400 shrink-0 rounded-20"> | ||
<div className="flex w-full flex-col items-center justify-center p-4"> | ||
<div className="mb-15 flex flex-col items-center justify-center gap-13"> | ||
<Image src="/icons/Logo.svg" alt="Logo" width={44} height={44} /> | ||
<span className="text-40-600">GrowFolio</span> | ||
<h1 className="mt-20 text-24-700">서비스 업데이트 준비중입니다</h1> | ||
<p className="text-18-600 text-gray-600"> | ||
빠른 시일 내에 찾아뵙겠습니다 | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters