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

/**
 * Page-hero module has no dynamic data — title/subtitle/bgImage live in config.
 */
export async function loadData(_db: DrizzleClient, _config: Config, _ctx: LoadCtx) {
  return null;
}
