explorer-app/pages/index.vue

16 lines
395 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',
})
2023-12-19 18:43:42 +01:00
const { filteredProjects } = storeToRefs(useData())
</script>
<template>
<ProjectGrid :projects="filteredProjects" />
</template>