import stringToHTML from "../stringToHTML"; import { openPopup } from "./PopupManager"; export function OpenPrivacyStatement() { const header = stringToHTML( /* html */ `

Privacy Statement

Our commitment to your privacy

`, ).firstChild as HTMLElement; const text = stringToHTML(/* html */ `

Privacy Policy

At BetterSEQTA+, we take your privacy seriously. We want to be completely transparent about how we handle your data.

Data Collection

We never collect any information from you. BetterSEQTA+ is designed to work entirely on your device. All processing happens locally in your browser, and we do not send any data to external servers.

What We Don't Do

Local Storage

BetterSEQTA+ uses your browser's local storage to save your preferences and settings. This data remains on your device and is never transmitted anywhere. You can clear this data at any time through your browser's settings.

Open Source

BetterSEQTA+ is an open-source project. You can review our code on GitHub to verify our privacy practices. We believe in transparency and encourage you to inspect the code yourself.

Our Commitment

We are committed to providing the best features possible while respecting your privacy. We understand that schools and students have concerns about data privacy, and we want to assure you that BetterSEQTA+ is designed with privacy as a core principle.

If you have any questions or concerns about our privacy practices, please reach out to us through our GitHub repository.

`).firstChild as HTMLElement; openPopup({ header, content: [text], }); }