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

/**
 * Static-content module has no dynamic data — body text lives in config.
 */

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