--- interface Props { } const {}=Astro.props const response = await fetch(`${import.meta.env.PUBLIC_STRAPI_URL}`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ query: ` query{ headerSection{ data{ attributes{ title1 title2 title3 title4 title5 title6 title7 } } } }`, }), }); const data = await response.json(); ---