1--- 2interface Props { 3 page: String; 4} 5const {page} = Astro.props 6--- 7<a 8 href=`/${page}` 9 class="font-bold 10 text-ctp-yellow hover:text-ctp-blue 11 hover:underline 12 ease-in hover:ease-out transition-all 13 ">{page}</a> 14 15 16 17