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:
Smigz 2024-06-23 20:24:55 -04:00 committed by GitHub
parent 592ddc4c1f
commit 35bf95891c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 64 additions and 4 deletions

View file

@ -46,6 +46,8 @@ textarea {
font-family: "Playfair Display", serif;
font-optical-sizing: auto;
font-style: normal;
min-height: 90vh;
}
.form {

View file

@ -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);