import CheckCircleIcon from "@/assets/report/check-circle.svg?react"; import XCircleIcon from "@/assets/report/x-circle.svg?react"; import { Surface } from "@/components/atoms/Surface"; import type { BrandGuide } from "@/features/plan/types/marketingPlan"; type BrandingVisualIdentityTabProps = { data: BrandGuide; }; export function BrandingVisualIdentityTab({ data }: BrandingVisualIdentityTabProps) { return (

Color Palette

{data.colors.map((swatch, i) => (

{swatch.hex}

{swatch.name}

{swatch.usage}

))}

Typography

{data.fonts.map((spec) => (

{spec.family}

{spec.sampleText}

{spec.weight} {" ยท "} {spec.usage}

))}

Logo Rules

{data.logoRules.map((rule) => (
{rule.correct ? ( ) : ( )}

{rule.rule}

{rule.description}

))}
); }