mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 12:55:36 -04:00
feat: updated css/demo data
This commit is contained in:
parent
1126391bcf
commit
bd7bbf8bf7
5 changed files with 21 additions and 6 deletions
|
@ -46,6 +46,7 @@ textarea {
|
|||
font-family: "Playfair Display", serif;
|
||||
font-optical-sizing: auto;
|
||||
font-style: normal;
|
||||
min-height: 90vh;
|
||||
}
|
||||
|
||||
.form {
|
||||
|
|
|
@ -16,9 +16,23 @@ function App() {
|
|||
email: "mgaye@motown.com",
|
||||
location: "Detriot, MI",
|
||||
});
|
||||
const [educationInfo, setEducationInfo] = useState([]);
|
||||
const [educationInfo, setEducationInfo] = useState([
|
||||
{
|
||||
schoolName: "Bowie State University",
|
||||
graduationDate: "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