Merge branch 'main' into cv-project

This commit is contained in:
Smigz 2024-06-23 20:24:46 -04:00 committed by GitHub
commit 3990dd4a11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 46 additions and 1 deletions

View file

@ -47,6 +47,7 @@ textarea {
font-optical-sizing: auto;
font-style: normal;
min-height: 90vh;
}
.form {

View file

@ -16,10 +16,11 @@ function App() {
email: "mgaye@motown.com",
location: "Detriot, MI",
});
const [educationInfo, setEducationInfo] = useState([
{
schoolName: "Bowie State University",
graduationDate: "2020",
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",
},
]);
@ -33,6 +34,7 @@ function App() {
employmentEnd: "present",
},
]);
const [showJobForm, setShowJobForm] = useState(false);
const [educationItemActive, setEducationItemActive] = useState(false);