-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #222 from So-Fan/SD-447-create-page-mention-legal
Sd 447 create page mention legal
- Loading branch information
Showing
8 changed files
with
298 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.legals-mentions-page-container { | ||
/* background-color: red; */ | ||
margin-top: 91px; | ||
width: 80%; | ||
height: 100%; | ||
} | ||
.legals-mentions-page-title { | ||
padding: 30px; | ||
font-size: 25px; | ||
font-family: "britanica-heavy"; | ||
} | ||
.legals-mentions-page-company-registration { | ||
width: 40%; | ||
padding: 30px; | ||
/* background-color: yellow; */ | ||
font-size: 20px; | ||
font-family: "britanica-regular"; | ||
font-weight: 500; | ||
text-align: justify; | ||
} | ||
.legals-mentions-page-contact { | ||
padding: 30px; | ||
/* display: flex; */ | ||
font-size: 20px; | ||
} | ||
.legals-mentions-page-contact div { | ||
font-family: "britanica-heavy"; | ||
padding-bottom: 10px; | ||
} | ||
.legals-mentions-page-publication-director { | ||
padding: 30px; | ||
/* display: flex; */ | ||
font-size: 20px; | ||
} | ||
.legals-mentions-page-publication-director div { | ||
font-family: "britanica-heavy"; | ||
padding-bottom: 10px; | ||
} | ||
.legals-mentions-page-hosting { | ||
padding: 30px; | ||
/* display: flex; */ | ||
font-size: 20px; | ||
width: 40%; | ||
text-align: justify; | ||
|
||
} | ||
.legals-mentions-page-hosting div { | ||
font-family: "britanica-heavy"; | ||
padding-bottom: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React from "react"; | ||
import "./LegalsMentions.css"; | ||
|
||
function LegalsMentions() { | ||
return ( | ||
<div className="legals-mentions-page-container"> | ||
<div className="legals-mentions-page-title">Mentions Légales</div> | ||
<div className="legals-mentions-page-company-registration"> | ||
Le Site www.sofan.app est une publication de la société : SoFan, SAS, au | ||
capital de 1 000€, enregistrée auprès de la Préfecture de Lille | ||
Métropole sous le siret 92227287700015, dont le siège social est situé | ||
au 125, Bois d’Achelles, 59200 Tourcoing, représentée par son Président | ||
habilité aux fins des présentes | ||
</div> | ||
<div className="legals-mentions-page-contact"> | ||
<div>Contact: </div> [email protected] | ||
</div> | ||
<div className="legals-mentions-page-publication-director"> | ||
<div>Directeur de la publication :</div> | ||
Grégoire de la LANDE d’OLCE | ||
</div> | ||
<div className="legals-mentions-page-hosting"> | ||
<div>Hébergeur :</div> | ||
Nom de l'entreprise: Google LLC Adresse: 1600 Amphitheatre Parkway, | ||
Mountain View, CA 94043, USA Numéro de téléphone: +1 650-253-0000 Site | ||
Web: https://firebase.google.com/ | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default LegalsMentions; |