--- import Layout from "../layouts/Layout.astro"; import Card from "../components/Card.astro"; import Footer from "../components/Footer.astro"; const response = await fetch('https://social.ayco.io/api/v1/accounts/109547735999980313') let { display_name, avatar, note } = await response.json(); const [first_name, last_name] = display_name.split(' ') note = note.replace('ayco.io/gh/', '').replace('ayco.io/sh/', '') ---