import type { DrizzleClient } from '@/server/db/client';
import type { LoadCtx } from '@/server/page-layout/types';
import type { Config } from './config';

/**
 * Banner module has no server-side data to load — config carries the image URL
 * and href directly. Return null so the renderer uses config alone.
 */

export async function loadData(_db: DrizzleClient, _config: Config, _ctx: LoadCtx) {
  return null;
}
