Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
fix: reach config
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Jun 16, 2024
1 parent c985039 commit 743aafd
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions src/config/reach.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,39 @@ export default function reach() {
const data = {
nano: {
value: "nano",
name: "Nano",
name: "Starter",
group: "< 1k",
},
// ...
pro: {
value: "pro",
name: "Pro",
micro: {
value: "micro",
name: "Niche",
group: "1k - 10k",
},
mini: {
value: "mini",
name: "Growing",
group: "10k - 30k",
},
small: {
value: "small",
name: "Established",
group: "30k - 50k",
},
medium: {
value: "medium",
name: "Popular",
group: "50k - 100k",
},
large: {
value: "large",
name: "Leader",
group: "100k - 500k",
},
giant: {
value: "giant",
name: "Influencer",
group: "500k+",
},
};
return {
data,
Expand Down

0 comments on commit 743aafd

Please # to comment.