function logoPositionClass(pos?: string) { switch (pos) { case "top_left": return "top-0 left-0"; case "bottom_left": return "bottom-0 left-0"; case "bottom_right": return "bottom-0 right-0"; default: return "top-0 right-0"; } } interface LogoWatermarkProps { logo: string; position?: string; opacity?: number; } export function LogoWatermark({ logo, position, opacity = 1 }: LogoWatermarkProps) { return (