from pathlib import Path
index_html = """
STUDIO 48 - TV-RADIO-PRO-JRR
© 2025 TV-RADIO-PRO-JRR — Création originale. Tous droits réservés.
ENTRER
"""
survey_html = """
Sondage — La voix des citoyens | TV-RADIO-PRO-JRR
Sondage — La voix des citoyens
Ton avis compte. Participe à l’évolution du projet TV-RADIO-PRO-JRR et
exprime ta vision pour contribuer à une dynamique collective, créative et consciente.
"""
output_dir = Path("/mnt/data")
index_path = output_dir / "studio48_corrected.html"
survey_path = output_dir / "sondage-voix-citoyens.html"
index_path.write_text(index_html, encoding="utf-8")
survey_path.write_text(survey_html, encoding="utf-8")
print(index_path)
print(survey_path)