feat: updated css/demo data

This commit is contained in:
Smigz 2024-06-23 20:20:40 -04:00
parent 1126391bcf
commit bd7bbf8bf7
5 changed files with 21 additions and 6 deletions

View file

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

View file

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