feat: add more pages

This commit is contained in:
Ron
2025-03-14 02:10:03 +02:00
parent 6dd9559b0f
commit 9c54174f9d
10 changed files with 229 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
export const usePortalTags = () => {
const user = useDirectusUser();
const tags = computed(() => (toValue(user)?.tags as Array<string>) || []);
const details = computed(() => {
const value = toValue(tags);
return {
interest: value.includes("portal-interest"),
};
});
return details;
};