16 lines
461 B
TypeScript
16 lines
461 B
TypeScript
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
||
|
import { MobileNavigationMoreItems } from "@calcom/ui/Shell";
|
||
|
import { Shell } from "@calcom/ui/v2";
|
||
|
|
||
|
export default function MorePage() {
|
||
|
const { t } = useLocale();
|
||
|
return (
|
||
|
<Shell>
|
||
|
<div className="max-w-screen-lg">
|
||
|
<MobileNavigationMoreItems />
|
||
|
<p className="mt-6 text-xs leading-tight text-gray-500 md:hidden">{t("more_page_footer")}</p>
|
||
|
</div>
|
||
|
</Shell>
|
||
|
);
|
||
|
}
|