My first personal blog!
A blog based in Github's API.
All blog posts are just issues from this repository.
Github API is used to get user info and and issues.
// User data
const response = await axios.get(`https://api.github.com/users/${username}`)
// Issues list
const response = await axios.get(`https://api.github.com/search/issues?q=${query}repo:${username}/${repo}`)
// Issue
const response = await axios.get(`https://api.github.com/repos/${username}/${repo}/issues/${slug}`)