--- // CookieConsent.astro - PDPA Cookie Consent Banner // ทำงานจริง: ถ้า reject จะไม่ load tracking scripts interface Props { position?: 'bottom' | 'top'; theme?: 'light' | 'dark'; } const { position = 'bottom', theme = 'light' } = Astro.props; // Consent states const CONSENT_TYPES = { ESSENTIAL: 'essential', ANALYTICS: 'analytics', MARKETING: 'marketing', FUNCTIONAL: 'functional', } as const; ---