I keep finding this as I am creating a website using Vercel and GitHub. I can get the website working just fine on local but it's not working here. Apparently the text and react logo should be in my App.jsx file but I deleted it and made this. Any help is really appreciated.
This is my app.jsx
import React from 'react'
import Header from './components/header/Header.jsx'
import Nav from './components/nav/Nav.jsx'
import About from './components/about/About.jsx'
import Experience from './components/experience/Experience.jsx'
import Services from './components/services/Services.jsx'
import Portfolio from './components/portfolio/Portfolio.jsx'
import Contact from './components/contact/Contact.jsx'
import Footer from './components/footer/Footer.jsx'
const App = () => {
return (
<>
<Header />
<Nav />
<About />
<Experience />
<Services />
<Portfolio />
<Contact />
<Footer />
</>
)
}
export default App
Fixed by adding to the json, although I know should just fix the errors... "build": "CI=false react-scripts build",