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 (