-
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): optimize imports and update layout in status page (#171)
- Loading branch information
Showing
10 changed files
with
32 additions
and
19 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
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 |
---|---|---|
@@ -1,13 +1,9 @@ | ||
import { Introduce } from '@/src/widgets/introduce'; | ||
import { Notification } from '@/src/widgets/notification'; | ||
import { CurrentServices } from '@/src/widgets/service-status'; | ||
|
||
export default function Home() { | ||
return ( | ||
<div className="flex size-full flex-col items-start justify-center gap-y-10"> | ||
<Introduce /> | ||
<CurrentServices status={false} /> | ||
<Notification /> | ||
<CurrentServices /> | ||
</div> | ||
); | ||
} |
Binary file not shown.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
import InspectionLottie from './InspectionLottie'; | ||
import IntroduceLottie from './IntroduceLottie'; | ||
|
||
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"> | ||
<div className="mt-20 break-keep"> | ||
<h2 className="text-4xl font-bold"> | ||
C-Lab 서비스 상태 페이지에 오신 것을 환영합니다. | ||
</h2> | ||
<p className="mt-5 text-xl"> | ||
<p className="mt-5 text-xl text-gray-300"> | ||
하단의 정보를 통해 운영중인 서비스의 상태를 확인할 수 있습니다. | ||
</p> | ||
</div> | ||
<InspectionLottie /> | ||
<IntroduceLottie /> | ||
</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
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
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