diff --git a/src/components/report/FacebookAudit.tsx b/src/components/report/FacebookAudit.tsx index 02c290d..f35e6fe 100644 --- a/src/components/report/FacebookAudit.tsx +++ b/src/components/report/FacebookAudit.tsx @@ -59,7 +59,19 @@ function PageCard({ page, index }: { key?: string | number; page: FacebookPage; )} -

{page.pageName}

+

+ {page.url ? ( + + {page.pageName} + + + ) : page.pageName} +

{page.category}

{/* Metrics grid */} diff --git a/src/components/report/OtherChannels.tsx b/src/components/report/OtherChannels.tsx index dc53c59..0a725f3 100644 --- a/src/components/report/OtherChannels.tsx +++ b/src/components/report/OtherChannels.tsx @@ -44,20 +44,22 @@ export default function OtherChannels({ channels, website }: OtherChannelsProps) >
-

{ch.name}

+ {ch.url ? ( + + {ch.name} + + + ) : ( +

{ch.name}

+ )}

{ch.details}

{cfg.label} - {ch.url && ( - - - - )} ); })}