diff --git a/README.beta.md b/README.beta.md
new file mode 100644
index 00000000..54d389b5
--- /dev/null
+++ b/README.beta.md
@@ -0,0 +1,93 @@
+
+
+Front Matter BETA is an essential Visual Studio Code extension when you want to manage the markdown pages of your static sites.
+
+This is the BETA version of Front Matter. If you were looking for the main version, check it out at frontmatter.codes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Front Matter BETA is an essential Visual Studio Code extension that simplifies working and managing your markdown articles. We created the extension to support many static-site generators like Hugo, Jekyll, Hexo, NextJs, Gatsby, and more.
+
+The extension brings Content Management System (CMS) capabilities straight within Visual Studio Code. For example, you can keep a list of the used tags, categories, create content, and so much more.
+
+Our main extension features are:
+
+- Page dashboard where you can get an overview of all your markdown pages. You can use it to search, filter, sort your contents.
+- Site preview within Visual Studio Code
+- SEO checks for title, description, and keywords
+- Support for custom actions/scripts
+- and many more
+
+
+
+
+
+> If you see something missing in your article creation flow, please feel free to reach out.
+
+**Version 3**
+
+In version v3 we introduced the welcome and dashboard webview. The welcome view allows to get you started using the extension, and the dashboard allows you to manage all your markdown pages in one place. This makes it easy to search, filter, sort, and more.
+
+**Version 2**
+
+In version v2 we released the re-designed sidebar panel with improved SEO support. This extension makes it the only extension to manage your Markdown pages for your static sites in Visual Studio Code.
+
+
+
+
+
+
+
+
+
+## 👉 Contributors 🤘
+
+
+
+
+
+
+
+
+## 🖤 Sponsors
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/scripts/beta-release.js b/scripts/beta-release.js
index d426ddae..e2ffa87e 100644
--- a/scripts/beta-release.js
+++ b/scripts/beta-release.js
@@ -16,8 +16,5 @@ console.log(packageJson.version);
fs.writeFileSync(path.join(path.resolve('.'), 'package.json'), JSON.stringify(packageJson, null, 2));
-let readme = fs.readFileSync(path.join(__dirname, '../README.md'), 'utf8');
-readme = readme.replace(/frontmatter.codes/g, 'beta.frontmatter.codes');
-readme = readme.replace(/frontmatter-teal-128x128.png/g, 'frontmatter-beta.png');
-
+let readme = fs.readFileSync(path.join(__dirname, '../README.beta.md'), 'utf8');
fs.writeFileSync(path.join(__dirname, '../README.md'), readme);
\ No newline at end of file