2024-07-04 07:51:15 +00:00
|
|
|
import { AuthGuard } from '~/components/AuthGuard'
|
|
|
|
import { ProfileSubscriptions } from '~/components/Views/ProfileSubscriptions'
|
|
|
|
import { PageLayout } from '~/components/_shared/PageLayout'
|
|
|
|
import { useLocalize } from '~/context/localize'
|
2022-11-28 22:14:19 +00:00
|
|
|
|
2023-02-10 01:19:20 +00:00
|
|
|
export const ProfileSubscriptionsPage = () => {
|
2023-11-14 10:45:44 +00:00
|
|
|
const { t } = useLocalize()
|
|
|
|
|
2022-11-28 22:14:19 +00:00
|
|
|
return (
|
2024-07-05 08:11:57 +00:00
|
|
|
<PageLayout withPadding={true} title={`${t('Discours')} :: ${t('Subscriptions')}`}>
|
2023-09-21 11:38:22 +00:00
|
|
|
<AuthGuard>
|
|
|
|
<ProfileSubscriptions />
|
|
|
|
</AuthGuard>
|
2023-02-17 09:21:02 +00:00
|
|
|
</PageLayout>
|
2022-11-28 22:14:19 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-07-03 21:25:03 +00:00
|
|
|
export default ProfileSubscriptionsPage
|