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 + ] + ] ]