--- // Cookie consent banner component export interface Props { position?: 'bottom' | 'top'; } const { position = 'bottom' } = Astro.props; ---