2022-03-17 13:20:49 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2023-03-14 19:43:45 +00:00
|
|
|
import { Button, EmptyScreen, HeadSeo } from "@calcom/ui";
|
2023-04-12 15:26:31 +00:00
|
|
|
import { X, ArrowRight } from "@calcom/ui/components/icon";
|
2021-10-07 16:12:39 +00:00
|
|
|
|
2023-04-18 18:45:32 +00:00
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
|
2021-10-07 16:12:39 +00:00
|
|
|
export default function NoMeetingFound() {
|
2021-10-13 10:49:15 +00:00
|
|
|
const { t } = useLocale();
|
|
|
|
|
2021-10-07 16:12:39 +00:00
|
|
|
return (
|
2023-03-14 19:43:45 +00:00
|
|
|
<>
|
2021-10-13 10:49:15 +00:00
|
|
|
<HeadSeo title={t("no_meeting_found")} description={t("no_meeting_found")} />
|
2022-02-09 00:05:13 +00:00
|
|
|
<main className="mx-auto my-24 max-w-3xl">
|
2023-03-14 19:43:45 +00:00
|
|
|
<EmptyScreen
|
2023-04-12 15:26:31 +00:00
|
|
|
Icon={X}
|
2023-03-14 19:43:45 +00:00
|
|
|
headline={t("no_meeting_found")}
|
|
|
|
description={t("no_meeting_found_description")}
|
|
|
|
buttonRaw={
|
2023-04-12 15:26:31 +00:00
|
|
|
<Button data-testid="return-home" href="/event-types" EndIcon={ArrowRight}>
|
2023-03-14 19:43:45 +00:00
|
|
|
{t("go_back_home")}
|
|
|
|
</Button>
|
|
|
|
}
|
|
|
|
/>
|
2021-10-07 16:12:39 +00:00
|
|
|
</main>
|
2023-03-14 19:43:45 +00:00
|
|
|
</>
|
2021-10-07 16:12:39 +00:00
|
|
|
);
|
|
|
|
}
|
2023-04-18 18:45:32 +00:00
|
|
|
|
|
|
|
NoMeetingFound.PageWrapper = PageWrapper;
|