---
/**
* NewsletterBar
* Compacte e-mail aanmeldbalk. Inline of gestapeld.
*
* Props:
* - headline?: string
* - placeholder?: string
* - btnLabel?: string
* - action: string — form action (Mailchimp, ConvertKit, eigen API)
* - disclaimer?: string — privacy tekst
* - layout?: 'inline' | 'stacked'
*/
interface Props {
headline?: string;
placeholder?: string;
btnLabel?: string;
action: string;
disclaimer?: string;
layout?: 'inline' | 'stacked';
}
const {
headline = 'Blijf op de hoogte',
placeholder = 'jouw@email.nl',
btnLabel = 'Aanmelden',
action,
disclaimer,
layout = 'inline',
} = Astro.props;
---