2
0
Files
cal/calcom/apps/web/pages/more.tsx
2024-08-09 00:39:27 +02:00

20 lines
562 B
TypeScript

"use client";
import Shell, { MobileNavigationMoreItems } from "@calcom/features/shell/Shell";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import PageWrapper from "@components/PageWrapper";
export default function MorePage() {
const { t } = useLocale();
return (
<Shell hideHeadingOnMobile>
<div className="max-w-screen-lg">
<MobileNavigationMoreItems />
<p className="text-subtle mt-6 text-xs leading-tight md:hidden">{t("more_page_footer")}</p>
</div>
</Shell>
);
}
MorePage.PageWrapper = PageWrapper;