import NextImage from 'next/image';
import Link from '@/core/components/elements/Link/Link';
import useDevice from '@/core/hooks/useDevice';
import { createSlug } from '@/core/utils/slug';
const BrandCard = ({ brand }) => {
const { isMobile } = useDevice();
return (
{brand.logo && (
)}
{!brand.logo && (
{brand.name}
)}
);
};
export default BrandCard;