Update public/elements/ExampleQuestions.jsx
Browse files
public/elements/ExampleQuestions.jsx
CHANGED
@@ -1,12 +1,21 @@
|
|
1 |
export default function ExampleQuestions() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
return (
|
3 |
-
<table style={{ width: '80%', backgroundColor: '#
|
4 |
<tbody>
|
5 |
<tr>
|
6 |
<td>
|
7 |
-
<strong
|
8 |
<ul>
|
9 |
-
{
|
10 |
<li key={index}>{question}</li>
|
11 |
))}
|
12 |
</ul>
|
@@ -16,3 +25,6 @@ export default function ExampleQuestions() {
|
|
16 |
</table>
|
17 |
);
|
18 |
}
|
|
|
|
|
|
|
|
1 |
export default function ExampleQuestions() {
|
2 |
+
const questions = [
|
3 |
+
"Jeg har lagt inn en bestilling hva skjer videre?",
|
4 |
+
"Hva er betingelser for utleie?",
|
5 |
+
"Jeg fikk en e-post om ny bestilling, men jeg finner den ikke i systemet?",
|
6 |
+
"Med hvem deler dere mine personlige opplysninger?",
|
7 |
+
"Hvordan beskytter dere dataene mine?",
|
8 |
+
"Kan jeg ta med hund eller katt?"
|
9 |
+
];
|
10 |
+
|
11 |
return (
|
12 |
+
<table style={{ width: '80%', backgroundColor: '#212f3c', color: '#d0d3d4', borderRadius: '8px', padding: '10px' }}>
|
13 |
<tbody>
|
14 |
<tr>
|
15 |
<td>
|
16 |
+
<strong>ꜰɪʀᴍᴀʜʏᴛᴛᴇᴏʀᴅɴɪɴɢ ꜰᴀǫ ᴀɴᴅ ᴘᴇʀsᴏɴᴠᴇʀɴsᴘᴏʟɪᴄʏ:</strong>
|
17 |
<ul>
|
18 |
+
{questions.map((question, index) => (
|
19 |
<li key={index}>{question}</li>
|
20 |
))}
|
21 |
</ul>
|
|
|
25 |
</table>
|
26 |
);
|
27 |
}
|
28 |
+
|
29 |
+
|
30 |
+
#212f3c
|