├── .devcontainer └── .devcontainer.json ├── .gitignore ├── .gitpod.yml ├── README.es.md ├── README.md ├── learn.json ├── package.json ├── src ├── app.js ├── assets │ └── img │ │ ├── 4geeks.ico │ │ └── rigo-baby.jpg ├── index.html └── style.css └── vite.config.js /.devcontainer/.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/.devcontainer/.devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/README.es.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/README.md -------------------------------------------------------------------------------- /learn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/learn.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/img/4geeks.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/src/assets/img/4geeks.ico -------------------------------------------------------------------------------- /src/assets/img/rigo-baby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/src/assets/img/rigo-baby.jpg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/src/index.html -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/src/style.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/vanillajs-hello/HEAD/vite.config.js --------------------------------------------------------------------------------