Skip to content

Commit

Permalink
disclaimer added
Browse files Browse the repository at this point in the history
  • Loading branch information
hasith committed Oct 9, 2023
1 parent 32d4285 commit fc7c921
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/components/quiz.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,18 @@ h3 {
margin-bottom: 30px;
}

h4 {
font-size: 1rem;
margin-bottom: 20px;
color: #ea0606;
}

ol#careerList li {
margin-bottom: 10px;
margin-top: 20px;
}


.hidden {
display: none;
}
Expand Down Expand Up @@ -146,6 +154,10 @@ ol#log li {
margin-top: 20px;
}

#tryAgain {
margin-bottom: 20px;
}

/* Custom styles */
body {
font-family: Arial, sans-serif;
Expand Down
3 changes: 3 additions & 0 deletions src/app/components/quizcomponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ export default function Quiz() {
) : (
<div className="result">
<h2>Recommended careers for you in priority order</h2>

<ol id="careerList">
{recommendedCareers.map((career, index) => (
<li key={index} className={index < 3 ? "highlighted" : ""}>
Expand All @@ -213,6 +214,8 @@ export default function Quiz() {
>
Try Again
</button>
<h4>Note: Use of this career recommendation engine is at your own discretion;
we are not liable for any decisions or outcomes resulting from its suggestions.</h4>
</div>
)}
</div>
Expand Down

0 comments on commit fc7c921

Please sign in to comment.