Skip to content

Commit fc1183c

Browse files
authored
card component reorder : astro > vue
1 parent c055a00 commit fc1183c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/pages/index.astro

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ import VueCard from '../components/VueCard.vue';
1717
</div>
1818
</h1>
1919
<div class="grid sm:grid-cols-2 max-w-2xl w-full mx-auto gap-4 sm:gap-8">
20-
<VueCard
21-
href="https://vuejs.org/"
22-
title="Vue.js Documentation"
23-
body="This card component by 'Vue JS'"
24-
/>
2520
<AstroCard
2621
href="https://docs.astro.build/"
2722
title="Astro Documentation"
2823
body="This card component by 'astro'"
2924
/>
25+
<VueCard
26+
href="https://vuejs.org/"
27+
title="Vue.js Documentation"
28+
body="This card component by 'Vue JS'"
29+
/>
3030
</div>
3131
</main>
3232
</Layout>

0 commit comments

Comments
 (0)