2022-09-08 01:02:09 +00:00
|
|
|
import UserV2OptInBanner from "@calcom/features/users/components/UserV2OptInBanner";
|
2022-09-07 04:13:31 +00:00
|
|
|
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>
|
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-08 01:02:09 +00:00
|
|
|
<div className="mt-6">
|
|
|
|
<UserV2OptInBanner />
|
|
|
|
</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>
|
|
|
|
);
|
|
|
|
}
|