--- interface AdBannerProps { width?: string; height?: string; className?: string; } const { width = "300", height = "250", className = "" } = Astro.props as AdBannerProps; const displayWidth = `${width}px`; const displayHeight = `${height}px`; const sizeLabel = `${width}×${height}`; ---
Рекламный блок {sizeLabel}