diff --git a/src/routes/blog/redminote7-arrowos.svx b/src/routes/blog/redminote7-arrowos.svx
index cab1a1f..19b63d2 100644
--- a/src/routes/blog/redminote7-arrowos.svx
+++ b/src/routes/blog/redminote7-arrowos.svx
@@ -1,6 +1,6 @@
---
-date: '2022-05-08'
-title: 'Arrow OS on Redmi Note 7'
+created: '2022-05-08'
+title: 'How to: Arrow OS on Redmi Note 7, root, microG'
description: 'Learn how to install ArrowOS, based on Android 12 on your Redmi Note 7 (lavender) phone! Also installs root and microG for a BigTech free phone.'
keywords:
- ArrowOS
@@ -23,8 +23,6 @@ keywords:
}
-# How to: Redmi Note 7 with ArrowOs (Android 12), root, microG
-
This tutorial will show you how to flash ArrowOS, a nice android 12 rom, together with magisk to get root access to the phone and also microG, the google alternative to google play services. This tutorial is tailored for the Redmi Note 7, commonly referred to as lavender. Other phones might work differently due to not having a ramdisk, or being an A/B device, or ... something else. Proceed with caution. You can't blame me for bricked devices.
Prerequisites:
diff --git a/src/routes/blog/software-recommendations.svx b/src/routes/blog/software-recommendations.svx
index 1d9b763..47ae44f 100644
--- a/src/routes/blog/software-recommendations.svx
+++ b/src/routes/blog/software-recommendations.svx
@@ -1,6 +1,7 @@
---
-date: '2022-07-26'
-title: 'Software recommendations for a privacy conscious digital life'
+created: '2022-07-26'
+updated: '2022-07-27'
+title: 'Software recommendations for privacy conscious people'
description: ''
keywords:
- privacy
@@ -19,8 +20,6 @@ hidden: false
}
-# 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
present what worked best for me here.
diff --git a/src/types.ts b/src/types.ts
index 415dba0..bc39e5c 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -1,5 +1,6 @@
export interface BlogPostFrontmatter {
- date: string;
+ created: string;
+ updated?: string;
title: string;
description: string;
keywords: string[];