Skip to content

Commit e1e2154

Browse files
authored
Merge pull request #47 from RoBorregos/resume
Added resume resource info
2 parents 2ad2f25 + eec987d commit e1e2154

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

src/app/_components/nav/navResources.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ type NavResourcesProps = {
44
};
55

66
const topics = [
7+
"Resume",
78
"Complexities and Analysis of Algorithm",
89
"Arrays",
910
"Searching Algorithms",

src/app/_components/resources/resourceContent.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import AdminContributions from "~/app/_components/resources/adminContributions";
44
import { AdminOnly } from "~/app/_components/resources/isAdmin";
55
import { api } from "~/trpc/react";
66
import { useState } from "react";
7+
import Resume from "./resume";
78

89
const ResourceContent = ({ topic}: { topic: string; }) => {
910
const [extraContent, setExtraContent] = useState("");
@@ -40,6 +41,10 @@ const ResourceContent = ({ topic}: { topic: string; }) => {
4041
</>
4142
);
4243

44+
case "Resume":
45+
return (
46+
<Resume/>
47+
)
4348
case "Complexities and Analysis of Algorithm":
4449
return (
4550
<>
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
const Resume = () => {
2+
return (
3+
<div className="font-light">
4+
<h1 className="text-lg font-semibold">Tips</h1>
5+
<p>
6+
The resume is probably the most important part of an application.
7+
It is said that recruiters take about 8 seconds to review a resume.
8+
It is also said that some companies filter resumes with automatic reviews.
9+
Therefore, there are some key points to consider when writing a resume:
10+
</p>
11+
<ul className="list-disc pl-6">
12+
<li>Keep it short, only one page.</li>
13+
<li>Use a clean and professional format. There are several templates and tools, just make sure to choose what fits best for you.</li>
14+
<li>Use bullets and short sentences.</li>
15+
<li>
16+
Use action verbs for each bullet point and consider the tense (Developing - Developed) <br />
17+
<a className="underline text-accent" href="https://capd.mit.edu/resources/resume-action-verbs/" target="_blank">Example action verbs</a>
18+
</li>
19+
<li>Order by date. Most recent at the top.</li>
20+
<li>Use XYZ: &quot;Accomplished [X] as measured by [Y], by doing [Z].&quot; If possible use numbers to show impact (2nd place out of 10 teams, improved precision by 10%, etc).</li>
21+
</ul>
22+
<br />
23+
<h1 className="text-lg font-semibold">Recommended sections</h1>
24+
<ul className="list-disc pl-6">
25+
<li><span className="text-green-500">Contact information</span> (name, email, phone number, LinkedIn, GitHub, etc).</li>
26+
<li><span className="text-green-500">Education:</span> As students, this should be the first section. If you&apos;re in your first years, might be relevant to include highschool. (school, degree, GPA, relevant courses (if relevant), expected graduation date).</li>
27+
<li><span className="text-green-500">Work Experience:</span> It is not always expected to have work experience, but if it existst, it should come just after education. (internships, work experience).</li>
28+
<li><span className="text-green-500">Projects:</span> Very important section (specially if you don&apos;t have work experience yet).</li>
29+
<li><span className="text-green-500">Extra sections:</span> Depending on your profile, you could add sections like: Leadership, Competitions, Volunteering, etc</li>
30+
<li><span className="text-green-500">Programming Languages</span> (recommended to include years you&apos;ve used the language)</li>
31+
<li><span className="text-green-500">Technologies/Tools:</span> list different tech you&apos;ve used that is relevant</li>
32+
<li><span className="text-green-500">Optional: Languages</span> (spoken languages with proficiency level)</li>
33+
<li><span className="text-green-500">Optional: Awards</span> (list of awards with the date)</li>
34+
</ul>
35+
</div>
36+
);
37+
}
38+
39+
export default Resume;

0 commit comments

Comments
 (0)