diff --git a/src/Components/About.jsx b/src/Components/About.jsx index 9eaad4a6..4d08e9ce 100644 --- a/src/Components/About.jsx +++ b/src/Components/About.jsx @@ -24,7 +24,7 @@ const imageAltText = "purple and blue abstract background"; * Sort description that expands on your title on the Home component. */ const description = - "I'm a UI/UX student studying at Barnett Technical University. I enjoy creating unique and simplistic user interfaces in creative ways."; + "I'm a Full-Stack Engineer student studying at F.M University. I enjoy creating unique and simplistic user interfaces in creative ways."; /** * List of some of skills or technologies you work on, are learning, @@ -32,10 +32,9 @@ const description = */ const skillsList = [ "Web design", - "User experience", - "Inclusive design", - "Focus group testing", - "Mobile user interfaces", + "Front-end", + "Backend", + "Full-stack", "Graphic design", ]; @@ -45,7 +44,7 @@ const skillsList = [ * about you on a professional level. */ const detailOrQuote = - "I am passionate about solving problems in new creative ways to drive innovation. By leveraging my UI/UX experience I continually look for new and better ways to make tech accessible by all."; + "Results-oriented Full Stack Developer with expertise in optimizing project outcomes and enhancing user experiences. Skilled in strategic project management, team collaboration, and leveraging technical expertise across front-end and back-end technologies."; const About = () => { return ( diff --git a/src/Components/Footer.jsx b/src/Components/Footer.jsx index d7651794..c3cf1c94 100644 --- a/src/Components/Footer.jsx +++ b/src/Components/Footer.jsx @@ -28,16 +28,15 @@ import youTubeIcon from "../images/socials/youtube.svg"; const Footer = (props) => { const { - devDotTo, + email, gitHub, instagram, linkedIn, medium, name, - primaryColor, twitter, - youTube, + } = props; return ( @@ -65,19 +64,19 @@ const Footer = (props) => { email )} - {devDotTo && ( + {/* {devDotTo && ( Dev.to - )} + )} */} {gitHub && ( - + GitHub )} {instagram && ( @@ -86,7 +85,7 @@ const Footer = (props) => { )} {linkedIn && ( @@ -94,18 +93,18 @@ const Footer = (props) => { )} {medium && ( - + Medium )} {twitter && ( - + Twitter )} {youTube && ( @@ -125,16 +124,16 @@ Footer.defaultProps = { }; Footer.propTypes = { - devDotTo: PropTypes.string, + email: PropTypes.string, gitHub: PropTypes.string, instagram: PropTypes.string, linkedIn: PropTypes.string, medium: PropTypes.string, name: PropTypes.string.isRequired, - primaryColor: PropTypes.string, + twitter: PropTypes.string, - youTube: PropTypes.string, + }; diff --git a/src/Components/Home.jsx b/src/Components/Home.jsx index a6a87212..7ab3e0f8 100644 --- a/src/Components/Home.jsx +++ b/src/Components/Home.jsx @@ -22,7 +22,7 @@ import PropTypes from "prop-types"; */ import image from "../images/woman-with-tablet.jpg"; -const imageAltText = "Adult female in office setting leaning against a glass wall while holding a platinum Microsoft Surface Pro 7 in tablet mode preparing to write with Microsoft Surface Pen"; +const imageAltText = "Results-oriented Full Stack Developer with expertise in optimizing project outcomes and enhancing user experiences. Skilled in strategic project management, team collaboration, and leveraging technical expertise across front-end and back-end technologies"; const Home = ({ name, title }) => { return ( diff --git a/src/Components/Portfolio.jsx b/src/Components/Portfolio.jsx index ab1c924e..8f9e3034 100644 --- a/src/Components/Portfolio.jsx +++ b/src/Components/Portfolio.jsx @@ -34,26 +34,21 @@ const projectList = [ title: "10 Things To Know About Azure Static Web Apps 🎉", description: "Collaboration to create a beginner friendly article to help explain Azure Static Web Apps and tooling to get started.", - url: "https://dev.to/azure/10-things-to-know-about-azure-static-web-apps-3n4i", + url: "https://x.com/ezeslucky", }, { title: "Web Development for Beginners", description: "Contributed sketch note imagery to accompany each lesson. These help provide visual representation of what is being taught.", - url: "https://github.com/microsoft/web-dev-for-beginners", + url: "https://x.com/ezeslucky", }, { title: "My Resume Site", description: "Created from Microsoft's resume workshop and deployed to GitHub pages. Includes my experience and design abilities.", - url: "https://github.com/microsoft/workshop-library/tree/main/full/build-resume-website", - }, - { - title: "GitHub Codespaces and github.dev", - description: - "Video interview to explain when to use GitHub.dev versus GitHub Codespaces, and how best to use each tool.", - url: "https://www.youtube.com/watch?v=c3hHhRME_XI", + url: "https://x.com/ezeslucky", }, + ]; const Portfolio = () => {