diff --git a/src/components/widgets/ArticlesList.svelte b/src/components/widgets/ArticlesList.svelte
new file mode 100644
index 0000000..d533668
--- /dev/null
+++ b/src/components/widgets/ArticlesList.svelte
@@ -0,0 +1,25 @@
+
+
+{#each articleEntries || [] as entry}
+
+{/each}
diff --git a/types/global.d.ts b/types/global.d.ts
index f9263a3..e3b7651 100644
--- a/types/global.d.ts
+++ b/types/global.d.ts
@@ -16,7 +16,9 @@ interface CollectionEntry {
}
interface ContentBlock {
- article: any
+ article: {
+ [key: string]: any
+ }
}
interface Content {