Run npm run build . The output is in the dist/ folder. Drag that folder into Netlify’s web interface. You’ll get a public link: https://your-restaurant.netlify.app .
restaurant/ ├── src/ │ ├── pages/ │ │ ├── index.astro │ │ ├── menu.astro │ │ ├── reservations.astro │ │ └── contact.astro │ ├── components/ │ │ ├── Header.astro │ │ ├── Footer.astro │ │ ├── MenuItem.astro │ │ └── CartModal.astro │ ├── layouts/ │ │ └── Layout.astro │ └── styles/ │ └── global.css ├── public/ │ └── images/ ├── astro.config.mjs └── package.json astro public my restaurant script link