@@ -23,5 +24,6 @@ const props = defineProps({
target: { type: String, default: "" },
icon: { type: Object },
size: { type: String, default: "2x" },
+ center: { type: Boolean, default: true },
});
diff --git a/src/vue-components/FeatureArticles.vue b/src/vue-components/FeatureArticles.vue
index 7df7382..2fa23a2 100644
--- a/src/vue-components/FeatureArticles.vue
+++ b/src/vue-components/FeatureArticles.vue
@@ -13,9 +13,9 @@
-
+
-
+
{{ article.title }}
@@ -57,6 +57,12 @@ const articles = [
text: "See how the e-discovery tools in Describo can help you.",
keywords: ["e-discovery", "assistant"],
},
+ {
+ title: "Defining a vocabulary and using it to create a dataset",
+ link: "/docs/articles/creating-a-dataset",
+ text: "See how to define a vocabulary and then use it to define a domain",
+ keywords: ["vocabulary", "dataset"],
+ },
];
const keywords = uniq(flattenDeep(articles.map((a) => a.keywords)).sort());