import React from 'react' import Link from 'next/link' import { useTranslation } from 'react-i18next' import { RiArrowRightUpLine } from '@remixicon/react' import { type Category, CategoryEnum } from '.' import cn from '@/utils/classnames' type FooterProps = { pricingPageURL: string currentCategory: Category } const Footer = ({ pricingPageURL, currentCategory, }: FooterProps) => { const { t } = useTranslation() return (
{currentCategory === CategoryEnum.CLOUD && (
{t('billing.plansCommon.taxTip')} {t('billing.plansCommon.taxTipSecond')}
)} {t('billing.plansCommon.comparePlanAndFeatures')}
) } export default React.memo(Footer)