Skip to content

Commit 7ae835a

Browse files
committed
fix(playground): using NuxtLink for links on cards
1 parent 6e57733 commit 7ae835a

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.playground/pages/index.vue

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,62 @@
55

66
<section class="navigation">
77
<div class="feature-grid">
8-
<a
9-
href="/icon"
8+
<NuxtLink
9+
to="/icon"
1010
class="feature-card"
1111
>
1212
<AttributeIcon name="arrow-right" />
1313
<h3>AttributeIcon</h3>
1414
<p>Icon component with various icon options</p>
15-
</a>
15+
</NuxtLink>
1616

17-
<a
18-
href="/responsive-image"
17+
<NuxtLink
18+
to="/responsive-image"
1919
class="feature-card"
2020
>
2121
<h3>AttributeResponsiveImage</h3>
2222
<p>Responsive image component with optimized loading</p>
23-
</a>
23+
</NuxtLink>
2424

25-
<a
26-
href="/title"
25+
<NuxtLink
26+
to="/title"
2727
class="feature-card"
2828
>
2929
<h3>ModulesTitle</h3>
3030
<p>Flexible title components with dynamic heading levels</p>
31-
</a>
31+
</NuxtLink>
3232

33-
<a
34-
href="/menu-items"
33+
<NuxtLink
34+
to="/menu-items"
3535
class="feature-card"
3636
>
3737
<h3>useMenuItems()</h3>
3838
<p>Composable for fetching and managing menu items</p>
39-
</a>
39+
</NuxtLink>
4040

41-
<a
42-
href="/rendered-markdown"
41+
<NuxtLink
42+
to="/rendered-markdown"
4343
class="feature-card"
4444
>
4545
<h3>useRenderedMarkdown()</h3>
4646
<p>Composable for rendering markdown content</p>
47-
</a>
47+
</NuxtLink>
4848

49-
<a
50-
href="/block-dynamic"
49+
<NuxtLink
50+
to="/block-dynamic"
5151
class="feature-card"
5252
>
5353
<h3>AttributeDynamicComponent</h3>
5454
<p>A component to render dynamic componets based on data</p>
55-
</a>
55+
</NuxtLink>
5656

57-
<a
58-
href="/map"
57+
<NuxtLink
58+
to="/map"
5959
class="feature-card"
6060
>
6161
<h3>AttributeMap</h3>
6262
<p>Interactive map component with markers and customizable tiles</p>
63-
</a>
63+
</NuxtLink>
6464
</div>
6565
</section>
6666
</main>

0 commit comments

Comments
 (0)