2023-01-10 15:39:29 +00:00
|
|
|
import Shell, { MobileNavigationMoreItems } from "@calcom/features/shell/Shell";
|
2022-09-07 04:13:31 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
|
2023-04-18 18:45:32 +00:00
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
|
2022-09-07 04:13:31 +00:00
|
|
|
export default function MorePage() {
|
|
|
|
const { t } = useLocale();
|
|
|
|
return (
|
2023-04-19 20:17:54 +00:00
|
|
|
<Shell hideHeadingOnMobile>
|
2023-02-20 14:11:51 +00:00
|
|
|
<div className="max-w-screen-lg">
|
2022-09-07 04:13:31 +00:00
|
|
|
<MobileNavigationMoreItems />
|
2023-04-05 18:14:46 +00:00
|
|
|
<p className="text-subtle mt-6 text-xs leading-tight md:hidden">{t("more_page_footer")}</p>
|
2022-09-07 04:13:31 +00:00
|
|
|
</div>
|
|
|
|
</Shell>
|
|
|
|
);
|
|
|
|
}
|
2023-04-18 18:45:32 +00:00
|
|
|
MorePage.PageWrapper = PageWrapper;
|