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',
|
|
|
|
})
|
2024-09-12 08:42:37 +02:00
|
|
|
const { groupedProjectsPerCategory } = storeToRefs(useData())
|
2023-12-19 18:43:42 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-09-12 08:42:37 +02:00
|
|
|
<div>
|
|
|
|
<ProjectGrid :projects="groupedProjectsPerCategory" />
|
|
|
|
</div>
|
2023-12-19 18:43:42 +01:00
|
|
|
</template>
|