imprint_privacy.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. from nicegui import ui
  2. from website.documentation.rendering import section_heading, subheading
  3. from website.header import add_head_html, add_header
  4. def create():
  5. add_head_html()
  6. add_header()
  7. ui.page_title('Imprint & Privacy | NiceGUI')
  8. with ui.column().classes('w-full p-8 lg:p-16 max-w-[1250px] mx-auto'):
  9. section_heading('', 'Imprint')
  10. subheading('Zauberzeug GmbH')
  11. ui.markdown('''
  12. Hohenholter Str. 43, 48329 Havixbeck, Germany
  13. Represented by Rodion (Rodja) Trappe
  14. Phone: +49 2507 3817, Email: info@zauberzeug.com
  15. ''')
  16. subheading('Registry entry')
  17. ui.markdown('''
  18. Registry court: Amtsgericht Coesfeld, Registry number: HRB 14215
  19. ''')
  20. subheading('Tax')
  21. ui.markdown('''
  22. Sales tax identification number according to §27a Sales Tax Act: DE286384205
  23. ''')
  24. section_heading('', 'Privacy Policy')
  25. ui.markdown('''
  26. We use [Plausible Analytics](https://plausible.io) to understand how you interact with our site.
  27. Plausible Analytics is a privacy-first analytics tool
  28. that does not use cookies or collect any personal data or personally identifiable information (PII).
  29. All data collected by Plausible is aggregated and anonymized.
  30. No other third-party analytics or tracking tools are used on this website.
  31. These aggregated, non-identifiable usage statistics are processed on the basis
  32. of our legitimate interest (Art. 6 (1)(f) GDPR) to analyze and improve our website.
  33. You have the right to object to this processing at any time.
  34. To exercise your right, please contact us at info@zauberzeug.com.
  35. For more details on Plausible Analytics and its data policy,
  36. visit <https://plausible.io/data-policy>.
  37. ''')