'use client' import { cn } from '@sim/emcn' import { useBrandConfig } from '@/ee/whitelabeling' export interface SupportFooterProps { /** * `fixed`/`absolute` pin the footer over the page (short, centered forms * only — content must never render underneath it). `static` renders it in * normal document flow after the content, which is required for pages with * unbounded content height (e.g. the resume gate's HITL form): an * absolutely-positioned footer with no reserved space is not pushed down by * flow content, so it silently overlaps and eats clicks on whatever content * ends up in its footprint. */ position?: 'fixed' | 'absolute' | 'static' } export function SupportFooter({ position = 'fixed' }: SupportFooterProps) { const brandConfig = useBrandConfig() return (