You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
992 B
30 lines
992 B
export default function ResumeSubmissionGuidelines() {
|
|
return (
|
|
<div className="rounded-lg border border-slate-200 bg-slate-50 p-5">
|
|
<div className="prose text-sm">
|
|
<h2 className="mt-0 text-xl font-medium">Submission Guidelines</h2>
|
|
<p>
|
|
Before submitting your resume for review, please review and
|
|
acknowledge our{' '}
|
|
<span className="font-medium">submission guidelines</span> stated
|
|
below.
|
|
</p>
|
|
<ul>
|
|
<li>
|
|
Ensure that you do not divulge any of your{' '}
|
|
<span className="font-medium">personal particulars</span>.
|
|
</li>
|
|
<li>
|
|
Ensure that you do not divulge any{' '}
|
|
<span className="font-medium">
|
|
company's proprietary and confidential information
|
|
</span>
|
|
.
|
|
</li>
|
|
<li>Proofread your resumes for grammatical/spelling errors.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|