// MyAirSpace — The certificate document itself (A4 portrait, print-ready). const { Seal } = window.MyAirSpace || {}; function CertificateDocument({ name = "Eleanor Hargreaves", line1 = "14 Rodwell Avenue", line2 = "Weymouth, Dorset", postcode = "DT4 8QT", issued = "18 June 2026", time = "14:32 BST", id = "MAS-4F2K-8WMT", expires = "18 June 2027", }) { return (
{/* Decorative inner frame */}
{/* Header */}
MyAirSpace
CERTIFICATE No.
{id}
{/* Title block */}
Drone Recording

Privacy Certificate

{/* Declaration */}

This certificate records that on {issued} at {time}, the resident named below declared that they do not consent to drones recording identifiable footage, images, audio or personal data of them, their household, visitors or private residential spaces at the property stated.

{/* Detail grid */}
{/* Seal + signature row */}
{name.split(" ")[0]} {name.split(" ").slice(-1)[0][0]}.
Resident signature
{/* Disclaimer */}

This certificate is a dated record of the resident’s stated privacy preference. It is not legally binding, does not create a no-fly zone, and does not override UK aviation rules. It is not issued by the CAA, ICO, police or any government body. Verify at myairspace.co.uk/verify using the certificate ID above.

); } function Detail({ label, value, mono }) { return (
{label}
{value}
); } window.CertificateDocument = CertificateDocument;