diff --git a/v3-docs/docs/about/install.md b/v3-docs/docs/about/install.md
index 05290d9624..e19d252106 100644
--- a/v3-docs/docs/about/install.md
+++ b/v3-docs/docs/about/install.md
@@ -6,6 +6,14 @@ You need to install the Meteor command line tool to create, run, and manage your
npx meteor
```
+To create your meteor project you can run:
+
+```bash
+meteor create
+```
+
+And it will prompt you to choose a project name and frontend framework.
+
## Prerequisites {#prereqs}
### Operating System (OS) {#prereqs-os}
diff --git a/v3-docs/v3-migration-docs/index.md b/v3-docs/v3-migration-docs/index.md
index 611ec81fa1..ddc8eb86a7 100644
--- a/v3-docs/v3-migration-docs/index.md
+++ b/v3-docs/v3-migration-docs/index.md
@@ -1,8 +1,3 @@
----
-meteor_version: 3.3.1
-node_version: 22.17.1
-npm_version: 10.9.2
----
# Meteor 3.0 Migration Guide
:::info You are reading the migration guide for Meteor 3!
@@ -14,26 +9,30 @@ This guide is for users with Meteor 2.x projects understand the changes between
## What's the status of version 3.0?
-Meteor 3.0 is currently in its official version!
-
-**Latest version:** `{{ $frontmatter.meteor_version }}`
-**Node.js version:** `{{ $frontmatter.node_version }} LTS`
-**NPM version:** `{{ $frontmatter.npm_version }}`
+Meteor 3.0 is currently in its official version. [Check the documentation for the latest version information.](https://docs.meteor.com/)
## How to try Meteor 3.0?
-You can create a new Meteor 3.0 project by running the command below:
+You can install the latest Meteor version command below:
```bash-vue
- meteor create my-new-project --release {{ $frontmatter.meteor_version }}
+ npx meteor
```
+and to create a new Meteor project:
+
+```bash-vue
+ meteor create
+```
+
+This will prompt the project creator wizard to help you set up a new project.
+
## How to upgrade from Meteor 2.x?
You can upgrade your Meteor 2.x project by running the command below inside your project folder:
```bash-vue
-meteor update --release {{ $frontmatter.meteor_version }}
+meteor update
meteor reset # resets project to a fresh state
```