Centralize site metadata and social URLs for JSON-LD, expose llmstxt.org content and per-page .md routes for LLM crawlers, and refactor blog/FAQ/events pages with shared components. Co-authored-by: Cursor <cursoragent@cursor.com>
107 lines
5.2 KiB
TypeScript
107 lines
5.2 KiB
TypeScript
/**
|
|
* Plain-markdown mirrors of the legal pages, served at /privacy.md and /terms.md
|
|
* for llms.txt consumers.
|
|
*
|
|
* SOURCE OF TRUTH: these must be kept in sync with the rendered pages at
|
|
* app/privacy/page.tsx and app/terms/page.tsx. If you edit the legal copy there,
|
|
* update it here too (and bump "Last updated").
|
|
*/
|
|
|
|
export const PRIVACY_MARKDOWN = `# Privacy Policy
|
|
|
|
_Last updated: April 3, 2026_
|
|
|
|
## Who We Are
|
|
|
|
Belgian Bitcoin Embassy is a community initiative focused on Bitcoin education and meetups in Belgium. We aim to process the minimum data needed to run this website safely and reliably.
|
|
|
|
## What Data We Process
|
|
|
|
If you log in with Nostr, we process your public key, role, and optional username. We also process content needed to operate the site, such as posts, submissions, media metadata, and moderation records. Some Nostr-related data may be cached on our servers to improve performance.
|
|
|
|
## Why We Process Data
|
|
|
|
We process data to provide core site features, maintain account sessions, prevent abuse, moderate community interactions, and keep the service secure. Our legal bases are contract (or steps requested by you before using features) and legitimate interests (security, integrity, and service operation).
|
|
|
|
## Cookies and Local Storage
|
|
|
|
We currently do not use third-party analytics or advertising cookies. We do use browser local storage to keep your authentication session active. You can clear this data at any time by logging out or clearing browser storage.
|
|
|
|
## Recipients
|
|
|
|
When you interact through Nostr, your actions are published on the Nostr network, which is public by design. We may also use infrastructure providers to host and secure the website.
|
|
|
|
## Retention
|
|
|
|
We keep account and operational data only as long as needed for service operation, security, and moderation. Technical logs may be retained for a limited period. You can remove local browser data at any time.
|
|
|
|
## Your GDPR Rights
|
|
|
|
Depending on applicable law, you may have rights to access, rectify, erase, restrict, object to, or request portability of your personal data. You also have the right to lodge a complaint with the Belgian Data Protection Authority.
|
|
|
|
## International Transfers
|
|
|
|
If technical providers process data outside the EEA, we aim to rely on appropriate safeguards as required under GDPR.
|
|
|
|
## Children
|
|
|
|
This website is not directed at children under the age of 16.
|
|
|
|
## Policy Updates
|
|
|
|
We may update this Privacy Policy from time to time. Material changes are reflected by updating the date at the top of this page.
|
|
|
|
## Contact
|
|
|
|
For privacy-related questions, reach out to us via our [community channels](https://belgianbitcoinembassy.org/community.md).
|
|
`;
|
|
|
|
export const TERMS_MARKDOWN = `# Terms of Use
|
|
|
|
_Last updated: April 3, 2026_
|
|
|
|
## Acceptance and Changes
|
|
|
|
By accessing or using this website, you agree to these Terms of Use. We may update these terms from time to time, and continued use after updates means you accept the revised terms.
|
|
|
|
## Nature of the Service
|
|
|
|
This website provides general Bitcoin education and community information. Nothing on this website is financial, investment, legal, or tax advice. We do not make recommendations to buy, sell, or hold Bitcoin or any other crypto-asset. Content is general in nature and not tailored to your personal circumstances.
|
|
|
|
## Crypto Risk Warning
|
|
|
|
Crypto-assets are highly volatile and you can lose all of your money. Crypto-assets are not regulated in the same way as traditional financial products. Regulatory rules may change, and availability may differ by jurisdiction. Always do your own research and consult a qualified professional before making financial decisions.
|
|
|
|
## MiCA and Regulatory Position
|
|
|
|
Belgian Bitcoin Embassy presents this website as an educational platform and not as a crypto-asset service provider. If the nature of our activities changes, we may update these terms and related legal pages.
|
|
|
|
## Content and Third Parties
|
|
|
|
Some content is curated from the Nostr network. We do not claim ownership of third-party content. Local moderation may hide or limit content on this site, but does not change content on the Nostr network itself.
|
|
|
|
## User Conduct
|
|
|
|
Users interacting via Nostr (likes, comments) are expected to behave respectfully. The moderation team reserves the right to locally hide content or block pubkeys that violate community standards.
|
|
|
|
## Paid and Commercial Features
|
|
|
|
Certain features may involve Lightning payments, such as paid public board messages. Any such feature is optional and does not change the educational nature of the site.
|
|
|
|
## Affiliate and Sponsorship Transparency
|
|
|
|
As of the last updated date above, we do not earn referral fees from links on this website. If sponsored or affiliate content is added in the future, it will be clearly disclosed.
|
|
|
|
## Disclaimer and Liability
|
|
|
|
This platform is provided on an "as is" and "as available" basis without warranties of any kind. To the maximum extent permitted by law, Belgian Bitcoin Embassy is not liable for losses or damages resulting from your use of this site or reliance on its content.
|
|
|
|
## Governing Law
|
|
|
|
These terms are governed by Belgian law, without prejudice to mandatory consumer protections that apply in your jurisdiction.
|
|
|
|
## Contact
|
|
|
|
For terms-related questions, contact us through our [community channels](https://belgianbitcoinembassy.org/community.md).
|
|
`;
|