gitextract_xra8ecv9/ ├── .gitignore ├── LICENSE ├── README.md ├── app.config.ts ├── app.vue ├── assets/ │ ├── README.md │ └── tailwind.css ├── components/ │ ├── AppFooter.vue │ ├── AppHeader.vue │ ├── CommentedText.vue │ ├── ContactForm.vue │ ├── FormContentCode.vue │ ├── GistSnippet.vue │ ├── GithubCorner.vue │ ├── MobileMenu.vue │ ├── ProjectCard.vue │ ├── README.md │ └── SnakeGame.vue ├── content/ │ └── README.md ├── developer.json ├── layouts/ │ ├── README.md │ └── default.vue ├── middleware/ │ └── README.md ├── nuxt.config.ts ├── package.json ├── pages/ │ ├── README.md │ ├── about-me.vue │ ├── contact-me.vue │ ├── index.vue │ └── projects.vue ├── public/ │ ├── README.md │ ├── pwa/ │ │ └── manifest.json │ └── worker.js ├── tailwind.config.js ├── test/ │ ├── github.test.js │ └── global.test.js ├── tsconfig.json └── utils/ ├── README.md └── github-api.js