mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
17 lines
434 B
Vue
17 lines
434 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 { groupedProjectsPerCategory } = storeToRefs(useData())
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<ProjectGrid :projects="groupedProjectsPerCategory" />
|
|
</div>
|
|
</template>
|