it-tools/src/pages/Home.page.vue

47 lines
1.3 KiB
Vue
Raw Normal View History

2022-03-31 00:33:29 +02:00
<script setup lang="ts">
2022-04-05 23:23:08 +02:00
import { toolsWithCategory } from '@/tools';
2022-08-17 15:09:43 +02:00
import { Heart } from '@vicons/tabler';
import { useHead } from '@vueuse/head';
2022-08-17 15:09:43 +02:00
import ColoredCard from '../components/ColoredCard.vue';
import ToolCard from '../components/ToolCard.vue';
useHead({ title: 'IT Tools - Handy online tools for developers' });
2022-03-31 00:33:29 +02:00
</script>
<template>
2022-04-15 23:10:47 +02:00
<div class="home-page">
2022-04-22 23:31:40 +02:00
<n-grid x-gap="12" y-gap="12" cols="1 400:2 800:3 1200:4 2000:8">
2022-08-17 15:09:43 +02:00
<n-gi>
<colored-card title="You like it-tools?" :icon="Heart">
Give us a star on
<a
href="https://github.com/CorentinTh/it-tools"
rel="noopener"
target="_blank"
aria-label="IT-Tools' github repository"
>github</a
>
or follow us on
<a
href="https://twitter.com/ittoolsdottech"
rel="noopener"
target="_blank"
aria-label="IT-Tools' twitter account"
>twitter</a
>! Thank you
<n-icon :component="Heart" />
</colored-card>
</n-gi>
<n-gi v-for="tool in toolsWithCategory" :key="tool.name">
2022-04-15 23:10:47 +02:00
<tool-card :tool="tool" />
</n-gi>
</n-grid>
</div>
2022-03-31 00:33:29 +02:00
</template>
2022-04-05 23:23:08 +02:00
<style scoped lang="less">
.home-page {
2022-04-22 23:31:40 +02:00
padding-top: 50px;
2022-04-05 23:23:08 +02:00
}
2022-04-22 23:31:40 +02:00
</style>