diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-10-25 09:38:48 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-10-25 09:38:48 +0700 |
| commit | 88339f8b4afa2eb840220fa573a5fa4599702fab (patch) | |
| tree | a8bb9978f8d665018b9ca3dfa432a752ba04b273 /src/lib | |
| parent | 6740ee319d642cbfdb3466eaa55644dcd30db1b4 (diff) | |
<Miqdad> remove log media banner
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/brand/components/MediaCard.jsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/brand/components/MediaCard.jsx b/src/lib/brand/components/MediaCard.jsx index 4a298e15..e37aa76c 100644 --- a/src/lib/brand/components/MediaCard.jsx +++ b/src/lib/brand/components/MediaCard.jsx @@ -4,9 +4,7 @@ import useDevice from '@/core/hooks/useDevice'; import { createSlug } from '@/core/utils/slug'; const MediaCard = ({ media }) => { - const { isMobile } = useDevice(); - - console.log("Media logo:", media); + const { isMobile } = useDevice(); return ( <Link @@ -25,11 +23,11 @@ const MediaCard = ({ media }) => { width={500} height={500} quality={85} - className="h-full w-[122px] object-contain object-center" + className='h-full w-[122px] object-contain object-center' /> ) : ( <span - className="text-center" + className='text-center' style={{ fontSize: `${16 - media.name.length * 0.5}px` }} > {media.name} |
