├── .gitignore ├── CNAME ├── LICENSE ├── Readme.md ├── favicon.ico ├── index.html ├── robots.txt └── sitemap.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .editorconfig -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | lucasangelo.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Angelo/portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Angelo/portfolio/HEAD/Readme.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Angelo/portfolio/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Angelo/portfolio/HEAD/index.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Angelo/portfolio/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Angelo/portfolio/HEAD/sitemap.xml --------------------------------------------------------------------------------