Browse Source

contact page: ajout de contenu

Lou 3 years ago
parent
commit
79eb6956eb

+ 1
- 1
src/pages/index.jsx View File

@@ -12,7 +12,7 @@ const IndexPage = () => {
12 12
 		<main>
13 13
 			<title>CLI: Association du numérique</title>
14 14
 			<Header />
15
-			<div className="pages-content">
15
+			<div className="page-content">
16 16
 				<section className="pages-sections">
17 17
 					<p className="section-paragraph">
18 18
 						La CLI est une association de travailleuses et travailleurs du

+ 19
- 1
src/pages/nous-contacter.jsx View File

@@ -9,7 +9,25 @@ const NousContacter = () => {
9 9
 		<main>
10 10
 			<title>Nous contacter</title>
11 11
 			<Header />
12
-			<div className="pages-content">
12
+			<div className="page-content page-contact">
13
+				<div className="contact-instructions">
14
+					<div className="contact-instructions-header">
15
+						<p>
16
+							Afin de garantir une meilleure prise en charge de votre demande,
17
+							nous vous invitons à renseigner de suivre ces quelques conseils :
18
+						</p>
19
+					</div>
20
+					<ul className="instructions-list">
21
+						<li className="instruction-item">Quel est votre budget ?</li>
22
+						<li className="instruction-item">Quel est votre besoin ?</li>
23
+						<li className="instruction-item">Quel est le but recherché ?</li>
24
+						<li className="instruction-item">Quel est votre délais ?</li>
25
+						<li className="instruction-item">
26
+							Avez vous besoin d'une prestation unique, ou d'un suivi sur le
27
+							moyen ou long terme ?
28
+						</li>
29
+					</ul>
30
+				</div>
13 31
 				<ContactForm />
14 32
 			</div>
15 33
 			<Footer />

+ 1
- 1
src/pages/statuts.jsx View File

@@ -8,7 +8,7 @@ const Statuts = () => {
8 8
 		<main>
9 9
 			<title>Nos statuts</title>
10 10
 			<Header />
11
-			<div className="pages-content">
11
+			<div className="page-content">
12 12
 				<section className="pages-sections status-section">
13 13
 					<h3 className="section-title">Les status de l'association</h3>
14 14
 					<h4 className="status-title">Constitution de l'association</h4>

+ 1
- 3
src/pages/vos-besoins.jsx View File

@@ -2,15 +2,13 @@ import React from "react";
2 2
 
3 3
 import Header from "../components/header";
4 4
 import Footer from "../components/footer";
5
-import ServiceCard from "../components/serviceCard";
6 5
 
7 6
 const VosBesoins = () => {
8 7
 	return (
9 8
 		<main>
10 9
 			<title>Vos besoins</title>
11 10
 			<Header />
12
-			<div className="pages-content">
13
-				<h3>Nos prestations</h3>
11
+			<div className="page-content">
14 12
 				<section className="pages-sections">
15 13
 					<h3 className="section-title" id="web-dev">
16 14
 						Développement web

+ 13
- 0
src/scss/index.scss View File

@@ -114,3 +114,16 @@ section.services-list {
114 114
 		}
115 115
 	}
116 116
 }
117
+
118
+.page-contact {
119
+	display: flex;
120
+	flex-wrap: wrap;
121
+
122
+	.contact-instructions {
123
+		margin: 1rem;
124
+
125
+		.instructions-list {
126
+			list-style: none;
127
+		}
128
+	}
129
+}

+ 1
- 1
src/scss/main.scss View File

@@ -41,7 +41,7 @@ button:focus {
41 41
 	}
42 42
 }
43 43
 
44
-.pages-content {
44
+.page-content {
45 45
 	> section {
46 46
 		margin-top: 40px;
47 47
 		width: 100%;

Loading…
Cancel
Save