diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index 7e22897..e5df3ff 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -2,7 +2,7 @@ const year = new Date().getFullYear(); - + +# Useful software I like + +Moving away from BigTech is not an easy task. However, in these days, there are plenty polished +alternatives out there. Over the years I tried out many different services and software. I will +formulate some of my opinions here. diff --git a/src/types.ts b/src/types.ts index 8bf6df1..415dba0 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,6 +1,9 @@ export interface BlogPostFrontmatter { date: string; title: string; + description: string; + keywords: string[]; + hidden: boolean; } export interface BlogPostMeta extends BlogPostFrontmatter {