refactor: remove unused imports from MediaColors and MediaType components

- Removed unused Eyebrow and P imports from MediaColors component
- Removed unused logo_light and logo_dark data arrays from MediaColors component
- Removed unused H4 import from MediaType component
This commit is contained in:
2025-11-21 17:52:35 +01:00
parent c68a46691f
commit 09ac38f598
2 changed files with 2 additions and 48 deletions

View File

@@ -1,52 +1,6 @@
'use client' 'use client'
import { Eyebrow, H3, P, H4, CT, CP } from '@/components/Texts' import { H3, H4, CT, CP } from '@/components/Texts'
const logo_light = [
{
id: "logomark_svg",
title: "Logomark (SVG)",
image: "/images/mediakit/logo_light/logomark.svg",
},
{
id: "logomark_png",
title: "Logomark (PNG)",
image: "/images/mediakit/logo_light/logomark.png",
},
{
id: "logo_svg",
title: "Logo (SVG)",
image: "/images/mediakit/logo_light/logo.svg",
},
{
id: "logo_png",
title: "Logo (PNG)",
image: "/images/mediakit/logo_light/logo.png",
},
]
const logo_dark = [
{
id: "logomark_svg",
title: "Logomark (SVG)",
image: "/images/mediakit/logo_dark/logomark.svg",
},
{
id: "logomark_png",
title: "Logomark (PNG)",
image: "/images/mediakit/logo_dark/logomark.png",
},
{
id: "logo_svg",
title: "Logo (SVG)",
image: "/images/mediakit/logo_dark/logo_dark.svg",
},
{
id: "logo_png",
title: "Logo (PNG)",
image: "/images/mediakit/logo_dark/logo_dark.png",
},
]
export function MediaColors() { export function MediaColors() {
return ( return (

View File

@@ -1,6 +1,6 @@
'use client' 'use client'
import { Eyebrow, H3, P, H4, CT, CP } from '@/components/Texts' import { Eyebrow, H3, P, CT, CP } from '@/components/Texts'
export function MediaType() { export function MediaType() {
return ( return (