explorer-app/pages/index.vue
2023-12-22 14:02:31 +01:00

15 lines
395 B
Vue

<script lang="ts" setup>
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 { filteredProjects } = storeToRefs(useData())
</script>
<template>
<ProjectGrid :projects="filteredProjects" />
</template>