<script lang="ts"> export let title: string; export let href: string; </script> <div class="flex flex-col gap-1"> <h2 class="flex text-2xl font-medium"> <a class="hover:text-white" {href}> {title} </a> </h2> <div class="flex flex-wrap gap-5"> <slot /> </div> </div>