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