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";
|
|
|
|
|
|
|
|
export default function MorePage() {
|
|
|
|
const { t } = useLocale();
|
|
|
|
return (
|
|
|
|
<Shell>
|
2022-09-09 15:02:31 +00:00
|
|
|
<div className="mt-8 max-w-screen-lg">
|
2022-09-07 04:13:31 +00:00
|
|
|
<MobileNavigationMoreItems />
|
2022-09-15 16:59:48 +00:00
|
|
|
{/* Save it for next preview version
|
|
|
|
<div className="mt-6">
|
2022-09-08 01:02:09 +00:00
|
|
|
<UserV2OptInBanner />
|
2022-09-15 16:59:48 +00:00
|
|
|
</div> */}
|
2022-09-07 04:13:31 +00:00
|
|
|
<p className="mt-6 text-xs leading-tight text-gray-500 md:hidden">{t("more_page_footer")}</p>
|
|
|
|
</div>
|
|
|
|
</Shell>
|
|
|
|
);
|
|
|
|
}
|