From 914c7be4e4b0c4e90cce85b84cb23f5f1172d2f1 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Fri, 15 Nov 2024 04:02:33 +0100 Subject: [PATCH] A more direct way to tell people how to contact me. --- src/App/Text/Explanations.purs | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/App/Text/Explanations.purs b/src/App/Text/Explanations.purs index ec9d1f7..6a01a0b 100644 --- a/src/App/Text/Explanations.purs +++ b/src/App/Text/Explanations.purs @@ -482,10 +482,18 @@ srv_introduction = ] ] +website_owner_address = "netlibre AT karchnu.fr" :: String + legal_notice :: forall w i. HH.HTML w i legal_notice = HH.div_ [ Bulma.h3 "Legal Notice" + , Bulma.strong "Website Publisher" + , expl [ HH.p_ [ HH.text "You can contact this website's owner and publisher at: " + , Bulma.strong website_owner_address + ] + ] + , Bulma.strong "Website Hosting" , expl [ HH.p_ [ HH.text "This website is hosted by " , Bulma.strong "Alsace RĂ©seau Neutre" @@ -574,9 +582,12 @@ legal_notice = HH.div_ ] , Bulma.strong "GDPR compliance" - , expl' """ - You have the right to access, correct and delete your personal - data at any time via this website or by contacting us at the - following email address: netlibre AT karchnu.fr - """ + , expl [ HH.p_ [ HH.text """ + You have the right to access, correct and delete your personal + data at any time via this website or by contacting us at the + following email address: + """ + , Bulma.strong website_owner_address + ] + ] ]