import type { Category } from './types' import * as React from 'react' import { useTranslation } from 'react-i18next' import Link from '@/next/link' import { cn } from '@/utils/classnames' import { CategoryEnum } from './types' type FooterProps = { pricingPageURL: string currentCategory: Category } const Footer = ({ pricingPageURL, currentCategory, }: FooterProps) => { const { t } = useTranslation() return (