We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 856f1aa commit 25aeb78Copy full SHA for 25aeb78
website/src/pages/cchf/index.astro
@@ -45,10 +45,11 @@ internalViews.push(
45
<div class="flex flex-wrap">
46
{internalViews.map((view) => {
47
return (
48
- <div class={`card w-96 shadow-sm ${backgroundColor}`}>
+ <div class={`card w-96 shadow ${backgroundColor}`}>
49
<div class="card-body">
50
<h2 class="card-title">{view.label}</h2>
51
<p>A card component has a figure, a body part, and inside body there are title and actions parts</p>
52
+ <a class="link link-primary" href={view.href}>Go to {view.label}</a>
53
</div>
54
55
)
0 commit comments