Update Home.page.vue

This commit is contained in:
elibrody 2024-02-13 10:04:52 -05:00 committed by GitHub
parent 0c7705cbc5
commit b43e63bb57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,14 +19,14 @@ const { t } = useI18n();
<ColoredCard :title="$t('home.follow.title')" :icon="Heart"> <ColoredCard :title="$t('home.follow.title')" :icon="Heart">
{{ $t('home.follow.p1') }} {{ $t('home.follow.p1') }}
<a <a
href="https://github.com/TheTechNetwork/it-tools" href="https://github.com/CorentinTh/it-tools"
rel="noopener" rel="noopener"
target="_blank" target="_blank"
:aria-label="$t('home.follow.githubRepository')" :aria-label="$t('home.follow.githubRepository')"
>GitHub</a> >GitHub</a>
{{ $t('home.follow.p2') }} {{ $t('home.follow.p2') }}
<a <a
href="https://twitter.com/is_that_merican" href="https://twitter.com/ittoolsdottech"
rel="noopener" rel="noopener"
target="_blank" target="_blank"
:aria-label="$t('home.follow.twitterAccount')" :aria-label="$t('home.follow.twitterAccount')"
@ -62,6 +62,8 @@ const { t } = useI18n();
<div class="grid grid-cols-1 gap-12px lg:grid-cols-3 md:grid-cols-3 sm:grid-cols-2 xl:grid-cols-4"> <div class="grid grid-cols-1 gap-12px lg:grid-cols-3 md:grid-cols-3 sm:grid-cols-2 xl:grid-cols-4">
<ToolCard v-for="tool in toolStore.tools" :key="tool.name" :tool="tool" /> <ToolCard v-for="tool in toolStore.tools" :key="tool.name" :tool="tool" />
</div> </div>
</div>
</div>
</template> </template>
<style scoped lang="less"> <style scoped lang="less">