├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── componentes └── Testimonio.js ├── hojas-de-estilo └── Testimonio.css ├── imagenes ├── testimonio-emma.png ├── testimonio-sarah.png └── testimonio-shawn.png ├── index.css ├── index.js └── logo.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/App.js -------------------------------------------------------------------------------- /src/componentes/Testimonio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/componentes/Testimonio.js -------------------------------------------------------------------------------- /src/hojas-de-estilo/Testimonio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/hojas-de-estilo/Testimonio.css -------------------------------------------------------------------------------- /src/imagenes/testimonio-emma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/imagenes/testimonio-emma.png -------------------------------------------------------------------------------- /src/imagenes/testimonio-sarah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/imagenes/testimonio-sarah.png -------------------------------------------------------------------------------- /src/imagenes/testimonio-shawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/imagenes/testimonio-shawn.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estefaniacn/testimonios-freecodecamp/HEAD/src/logo.svg --------------------------------------------------------------------------------