const article = fetch(`https://dev.to/api/articles?username=${username}`).then((res) => res.json());
const articles = fetch("https://dev.to/api/articles/me", {
headers: {
"api-key": process.env.API_KEY,
},
}).then((res) => res.json());