diff --git a/site/pages/react-native/getting-started/getting-started-expo.mdx b/site/pages/react-native/getting-started/getting-started-expo.mdx index aa7a345af0..671560c19f 100644 --- a/site/pages/react-native/getting-started/getting-started-expo.mdx +++ b/site/pages/react-native/getting-started/getting-started-expo.mdx @@ -37,6 +37,16 @@ yarn expo install expo@latest ::: +:::info +You can also use our [quickstart template](https://github.com/alchemyplatform/account-kit-expo-quickstart) to get started quickly. +Simply run + +```bash +npx create-expo-app@latest --template https://github.com/alchemyplatform/account-kit-expo-quickstart +``` + +::: + Then you want to upgrade all dependencies to match the new Expo SDK version. ```bash diff --git a/site/pages/react-native/overview.mdx b/site/pages/react-native/overview.mdx index a10b8a5cd7..52c76e333d 100644 --- a/site/pages/react-native/overview.mdx +++ b/site/pages/react-native/overview.mdx @@ -13,6 +13,20 @@ We've built a simple example for reference purposes [here](https://github.com/al ## Getting Started +### Get up and running quickly using our Quickstart Template + +You can quickly spin up a new React Native (Expo) project setup with Account kit by using our [quickstart template](https://github.com/alchemyplatform/account-kit-expo-quickstart). + +Simply run: + +```bash +npx create-expo-app@latest --template https://github.com/alchemyplatform/account-kit-expo-quickstart +``` + +This will create a new Expo project with Account Kit setup and ready to go! You can then follow the instructions to setup a [Signer in your project](/react-native/signer/setup-guide). + +### Adding Account Kit to a new or existing React Native project? + :::info If you are starting a fresh project, we highly recommend using Expo. You can easily create a new Expo project by running `npx create-expo-app@latest` from your terminal. Visit the [Expo docs](https://docs.expo.dev/get-started/create-a-project/) for more information.