export const fetchGuiters = async () => { const response = await fetch( `${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guiters?populate=*` ) const jsonResponse = await response.json() return jsonResponse }