While developing a React version of my online portfolio, I encountered an issue. Once deployed on GitHub pages, the text on my landing and contact pages disappeared. Despite removing the background image thinking it might be hiding the text, the issue persisted. You can access my deployed portfolio and view the page source code using the links below:
Deployed Site: View Portfolio
Github Source Code: GitHub Repository
import React from "react";
// other import statements
function Home() {
return (
// JSX code for Home component
);
}
export default Home;
import React from "react";
// other import statements
function Contact() {
return (
// JSX code for Contact component
);
}
export default Contact;