import React from 'react'; import { useTranslation } from 'next-i18next'; import { RecentlyCreatedIcon } from '~/components/Icons/RecentlyCreatedIcon'; import { BookmarkList } from '~/components/PageList/BookmarkList'; import { RecentCreated } from '~/components/RecentCreated/RecentCreated'; import styles from '~/components/UsersHomePageFooter.module.scss'; export type UsersHomePageFooterProps = { creatorId: string, } export const UsersHomePageFooter = (props: UsersHomePageFooterProps): JSX.Element => { const { t } = useTranslation(); const { creatorId } = props; return (

{t('footer.bookmarks')}

{t('footer.recently_created')}

); };