diff --git a/docs/cli/usage.mdx b/docs/cli/usage.mdx
index 0e8c5fce9..f6e06c966 100644
--- a/docs/cli/usage.mdx
+++ b/docs/cli/usage.mdx
@@ -34,10 +34,29 @@ infisical init
## Inject environment variables
-```bash
-# inject environment variables into app
-infisical run -- [your application start command]
-```
+
+ ```bash
+ # inject environment variables into app
+ infisical run -- [your application start command]
+ ```
+
+
+
+ Custom aliases can utilize secrets from Infisical. Suppose there is a custom alias `yd` in `custom.sh` that runs `yarn dev` and needs the secrets provided by Infisical.
+ ```bash
+ #!/bin/sh
+
+ yd() {
+ yarn dev
+ }
+ ```
+
+ To make the secrets available from Infisical to `yd`, you can run the following command:
+
+ ```bash
+ infisical run --command="source custom.sh && yd"
+ ```
+
View all available options for `run` command [here](./commands/run)
diff --git a/frontend/public/locales/en/translations.json b/frontend/public/locales/en/translations.json
index 7f0ad7008..c387d938b 100644
--- a/frontend/public/locales/en/translations.json
+++ b/frontend/public/locales/en/translations.json
@@ -17,8 +17,8 @@
"starter": {
"name": "Starter",
"price-explanation": "up to 5 team members",
- "text": "Manage any project with 5 members for free!",
- "subtext": "$5 per member/month afterwards."
+ "text": "Manage up to 3 project with up to 5 team members for free!",
+ "subtext": ""
},
"professional": {
"name": "Professional",
diff --git a/frontend/src/components/billing/Plan.tsx b/frontend/src/components/billing/Plan.tsx
index 692157923..2e8a47d2c 100644
--- a/frontend/src/components/billing/Plan.tsx
+++ b/frontend/src/components/billing/Plan.tsx
@@ -20,8 +20,8 @@ interface Props {
export default function Plan({ plan }: Props) {
return (
@@ -41,13 +41,13 @@ export default function Plan({ plan }: Props) {
<>
{plan.buttonTextMain === 'Schedule a Demo' ? (
-