File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
<script setup>
2
2
import PrimaryButton from ' @/components/PrimaryButton.vue'
3
3
import BubblesAnimation from ' @/components/Layout/BubblesAnimation.vue'
4
- import { HomepageLinks , HomepageProjects } from ' @/data/homepageLinks.js'
4
+ import { HomepageLinks , HomepageProjects , AffiliateLinks } from ' @/data/homepageLinks.js'
5
5
import FlexGridContainer from ' @/components/Layout/FlexGridContainer.vue' ;
6
6
7
7
const lastGridItemClass = ' odd:last-of-type:text-center odd:last-of-type:col-span-full' ;
@@ -45,6 +45,19 @@ const lastGridItemClass = 'odd:last-of-type:text-center odd:last-of-type:col-spa
45
45
</PrimaryButton >
46
46
</FlexGridContainer >
47
47
</div >
48
+
49
+ <div class =" flex flex-col gap-1 py-4" >
50
+ <h2 class =" font-serif flex flex-row gap-4 md:justify-center" >
51
+ <span >🔗</span > Recomendações e Afiliados
52
+ </h2 >
53
+
54
+ <FlexGridContainer >
55
+ <PrimaryButton :class =" lastGridItemClass" v-for =" button in AffiliateLinks" :key =" button.target"
56
+ icon =" hugeicons:briefcase-06" :target =" button.target" >
57
+ {{ button.label }}
58
+ </PrimaryButton >
59
+ </FlexGridContainer >
60
+ </div >
48
61
</div >
49
62
50
63
<BubblesAnimation ></BubblesAnimation >
You can’t perform that action at this time.
0 commit comments