Page not found due deployment reason

Hi i am quite new here, and i have faced a problem with deploying my site. I have read the documentation, and since i fall into a 404 error several times, i have stored a netlify.toml file in the root of my site repository however it didn´t seem to help much. need advice to debug deploy Netlify App also my repo: GitHub - devadjun/FernandasWebsite

Hey @devadjun

I cannot see the deploy log you shared as it is private or deleted.

I see yarn build is the build command in the netlify.toml, however there is no build script in the package.json, only a dev script

  "scripts": {
    "dev": "parcel"
  },

Depending on the project the build script might look something like

  "scripts": {
    "dev": "parcel",
    "build": "parcel build src/index.html"
  },

Check out the Parcel CLI documentation for more detailed information

@coelmay hmmm, unfortunately, that didn’t work out, but at least it helped to fix other problems! Thank you!!