camparchimedes's picture
Update public/elements/ExampleQuestions.jsx
8c8cf9e verified
raw
history blame contribute delete
723 Bytes
export default function ExampleQuestions() {
const questions = [
"Jeg har lagt inn en bestilling hva skjer videre?",
"Hva er betingelser for utleie?",
"Jeg fikk en e-post om ny bestilling, men jeg finner den ikke i systemet?",
"Med hvem deler dere mine personlige opplysninger?",
"Hvordan beskytter dere dataene mine?",
"Kan jeg ta med hund eller katt?"
];
return (
<table style={{ width: '80%', backgroundColor: '#212f3c', color: '#d0d3d4', borderRadius: '8px', padding: '10px' }}>
<tbody>
<tr>
<td>
<strong> Daysoff Firmahytteordning & Personvern FAQ</strong>
<ul>
{questions.map((question, index) => (
<li key={index}>{question}</li>
))}
</ul>
</td>
</tr>
</tbody>
</table>
);
}