explorer-app/pages/index.vue

18 lines
434 B
Vue
Raw Normal View History

2023-12-19 18:43:42 +01:00
<script lang="ts" setup>
2023-12-22 14:02:31 +01:00
useHead({
title: 'Dashboard',
})
useSeoMeta({
ogTitle: 'Dashboard',
ogDescription: 'There are challenges in finding crucial technical details and comparing various privacy-focused projects.',
ogImage: '/web3privacy_eye.webp',
})
const { groupedProjectsPerCategory } = storeToRefs(useData())
2023-12-19 18:43:42 +01:00
</script>
<template>
<div>
<ProjectGrid :projects="groupedProjectsPerCategory" />
</div>
2023-12-19 18:43:42 +01:00
</template>