|
1 |
| -import { AlertCircle } from "@untitled-ui/icons-react"; |
| 1 | +import { LinkExternal02 } from "@untitled-ui/icons-react"; |
2 | 2 | // eslint-disable-next-line import/no-restricted-paths
|
3 | 3 | import { Header } from "../features/header/components/header";
|
4 |
| -import { Card } from "@stacklok/ui-kit"; |
| 4 | +import { PageContainer } from "./page-container"; |
| 5 | +import { EmptyState } from "./empty-state"; |
| 6 | +import { IllustrationAlert, LinkButton } from "@stacklok/ui-kit"; |
| 7 | +import { emptyStateStrings } from "@/constants/empty-state-strings"; |
| 8 | +import { hrefs } from "@/lib/hrefs"; |
5 | 9 |
|
6 | 10 | export function ErrorFallbackContent() {
|
7 | 11 | return (
|
8 |
| - <div className="h-24 flex flex-col flex-1 justify-center"> |
9 |
| - <Card className="p-8 flex flex-col items-center"> |
10 |
| - <AlertCircle className="text-red-600 mb-2 size-16" /> |
11 |
| - <div className="text-xl font-semibold text-secondary text-center"> |
12 |
| - An error occurred |
13 |
| - </div> |
14 |
| - <div className="text-base mb-4 text-secondary text-center text-balance"> |
15 |
| - If this issue persists, please reach out to us on{" "} |
16 |
| - <a |
17 |
| - className="underline text-secondary" |
18 |
| - href="https://discord.gg/stacklok" |
19 |
| - rel="noopener noreferrer" |
20 |
| - target="_blank" |
21 |
| - > |
22 |
| - Discord |
23 |
| - </a>{" "} |
24 |
| - or open a new{" "} |
25 |
| - <a |
26 |
| - className="underline text-secondary" |
27 |
| - href="https://github.com/stacklok/codegate/issues/new" |
28 |
| - rel="noopener noreferrer" |
29 |
| - target="_blank" |
30 |
| - > |
31 |
| - Github issue |
32 |
| - </a> |
33 |
| - </div> |
34 |
| - </Card> |
35 |
| - </div> |
| 12 | + <PageContainer> |
| 13 | + <div className="py-20 flex flex-col items-center"> |
| 14 | + <EmptyState |
| 15 | + title={emptyStateStrings.title.anErrorOccurred} |
| 16 | + body={emptyStateStrings.body.errorDesc} |
| 17 | + illustration={IllustrationAlert} |
| 18 | + actions={[ |
| 19 | + <LinkButton |
| 20 | + key="discord" |
| 21 | + variant="secondary" |
| 22 | + href={hrefs.external.discord} |
| 23 | + rel="noopener noreferrer" |
| 24 | + target="_blank" |
| 25 | + > |
| 26 | + Discord |
| 27 | + <LinkExternal02 /> |
| 28 | + </LinkButton>, |
| 29 | + <LinkButton |
| 30 | + key="github-issues" |
| 31 | + variant="secondary" |
| 32 | + href={hrefs.external.github.newIssue} |
| 33 | + rel="noopener noreferrer" |
| 34 | + target="_blank" |
| 35 | + > |
| 36 | + Github issues |
| 37 | + <LinkExternal02 /> |
| 38 | + </LinkButton>, |
| 39 | + ]} |
| 40 | + /> |
| 41 | + </div> |
| 42 | + </PageContainer> |
36 | 43 | );
|
37 | 44 | }
|
38 | 45 |
|
|
0 commit comments