Skip to content
Snippets Groups Projects
Commit 9c6385c0 authored by mperezsa's avatar mperezsa
Browse files

Upload New File

parent 40411cae
No related branches found
No related tags found
No related merge requests found
import React from "react";
import { Link } from "react-router-dom";
import "./Default.css";
import Footer from "../Footer";
function ScansInformation() {
return (
<>
<h2>Scan Questionnaires Information</h2>
<div className="middle-container">
<div>
<h3>Information about the scan I : Basic Scan</h3>
<div className="item-area-2">
<ul style={{ padding: "1.5rem" }}>
<li>
Introduction :
<p className="scan-text">
This scan is used as a questionnaire to ask participants about
their position towards many competences levels in their
institution or organization. The data collected is submitted
to General Data Protection Regulation
</p>
</li>
<li>Type of the scan : </li>
<p className="scan-text"> Basic Type </p>
<li>Who should answer this questionnaire ?</li>
<p className="scan-text">
This questionnaire can be answered regardless the position of
the participant
</p>
<li>How the collected data will be used ?</li>
<p className="scan-text">
The collected data will be used to construct, design dashboards
containing graphical information.
</p>
<Link to="/scangenerator">
<button className="btn">Create your scan</button>
</Link>
</ul>
</div>
<h3>Information about the scan II : Under Construction</h3>
<div className="item-area-2">
<ul style={{ padding: "1.5rem" }}>
<li>- Introduction</li>
<li>- What is this scan for ?</li>
<li>- Who should answer this questionnaire ?</li>
<li>- How the data collected will be used ?</li>
<Link to="/scangenerator">
<button className="btn">Create your scan</button>
</Link>
</ul>
</div>
</div>
</div>
<Footer></Footer>
</>
);
}
export default ScansInformation;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment