mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 04:45:36 -04:00
Cv project (#18)
* feat: updated component * feat: added components * feat: fixed * refactor(feat): added button, renamed variables * feat: updated education info component * feat: experience component added * refactor: modular * feat: new components, style, etc * refactor: remove unneccessary divs * feat(styling): yep * feat(style): new font added for resume * feat(styling): colors, btns, etc * feat: basically done * feat: updated css/demo data
This commit is contained in:
parent
592ddc4c1f
commit
35bf95891c
5 changed files with 64 additions and 4 deletions
|
@ -46,6 +46,8 @@ textarea {
|
|||
font-family: "Playfair Display", serif;
|
||||
font-optical-sizing: auto;
|
||||
font-style: normal;
|
||||
min-height: 90vh;
|
||||
|
||||
}
|
||||
|
||||
.form {
|
||||
|
|
|
@ -16,9 +16,25 @@ function App() {
|
|||
email: "mgaye@motown.com",
|
||||
location: "Detriot, MI",
|
||||
});
|
||||
const [educationInfo, setEducationInfo] = useState([]);
|
||||
|
||||
const [educationInfo, setEducationInfo] = useState([
|
||||
{
|
||||
schoolName: "Bowie State University",
|
||||
graduationDatehttps://github.com/smiggiddy/odin-codeprojects/pull/18/conflict?name=cv-project%252Fsrc%252FApp.jsx&base_oid=7801fda840d1fa1854f23ddac31c617c382a3d13&head_oid=d00749cafbac7d5524c928f28cbb5b81e06b608e: "2020",
|
||||
fieldOfStudy: "Computer Technology: Network Security",
|
||||
},
|
||||
]);
|
||||
const [editEducation, setEditEducation] = useState(null);
|
||||
const [employmentHistory, setEmploymentHistory] = useState([]);
|
||||
const [employmentHistory, setEmploymentHistory] = useState([
|
||||
{
|
||||
employer: "Google",
|
||||
jobTitle: "Site Reliability Engineer",
|
||||
jobDescription: "Keeping servers online and happy",
|
||||
employmentStart: "09/2020",
|
||||
employmentEnd: "present",
|
||||
},
|
||||
]);
|
||||
|
||||
const [showJobForm, setShowJobForm] = useState(false);
|
||||
const [educationItemActive, setEducationItemActive] = useState(false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue