import { PageSection } from "@/components/section/PageSection"; import { MOCK_OTHER_CHANNELS_REPORT } from "@/features/report/mocks/otherChannels"; import type { OtherChannelsReport } from "@/features/report/types/otherChannels"; import { OtherChannelsList } from "@/features/report/ui/otherChannels/OtherChannelsList"; import { WebsiteTechAuditBlock } from "@/features/report/ui/otherChannels/WebsiteTechAuditBlock"; type ReportOtherChannelsSectionProps = { data?: OtherChannelsReport; }; export function ReportOtherChannelsSection({ data = MOCK_OTHER_CHANNELS_REPORT }: ReportOtherChannelsSectionProps) { return ( ); }