-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(status): add introduce widget and UI components (#171)
- Loading branch information
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
export * from './ui'; |
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,16 @@ | ||
'use client'; | ||
|
||
import Lottie from 'react-lottie-player'; | ||
|
||
import inspectionLottieJson from '@/public/lottie/inspection.json'; | ||
|
||
export default function InspectionLottie() { | ||
return ( | ||
<Lottie | ||
className="hidden w-[400px] shrink-0 md:block" | ||
loop | ||
animationData={inspectionLottieJson} | ||
play | ||
/> | ||
); | ||
} |
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,17 @@ | ||
import InspectionLottie from './InspectionLottie'; | ||
|
||
export default function Introduce() { | ||
return ( | ||
<div className="flex w-full flex-col justify-center gap-4 md:flex-row"> | ||
<div className="mt-12 break-keep"> | ||
<h2 className="text-4xl font-bold"> | ||
C-Lab 서비스 상태 페이지에 오신 것을 환영합니다. | ||
</h2> | ||
<p className="mt-5 text-xl"> | ||
하단의 정보를 통해 운영중인 서비스의 상태를 확인할 수 있습니다. | ||
</p> | ||
</div> | ||
<InspectionLottie /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as Introduce } from './Introduce'; |