Add contact option on main pricing page
Docker / build-and-push-image (push) Successful in 1m35s

This commit is contained in:
Jon Staab
2026-06-17 15:03:23 -07:00
parent 7750a5e552
commit 4a5bd4d563
5 changed files with 44 additions and 3 deletions
+1
View File
@@ -28,6 +28,7 @@ pub struct Plan {
pub id: String,
pub name: String,
pub amount: i64,
pub hidden: bool,
pub members: Option<i64>,
pub blossom: bool,
pub livekit: bool,
+3
View File
@@ -23,6 +23,7 @@ pub fn list_plans() -> Vec<Plan> {
id: "free".to_string(),
name: "Free".to_string(),
amount: 0,
hidden: false,
members: Some(10),
blossom: false,
livekit: false,
@@ -31,6 +32,7 @@ pub fn list_plans() -> Vec<Plan> {
id: "basic".to_string(),
name: "Basic".to_string(),
amount: 500,
hidden: false,
members: Some(100),
blossom: true,
livekit: true,
@@ -39,6 +41,7 @@ pub fn list_plans() -> Vec<Plan> {
id: "growth".to_string(),
name: "Growth".to_string(),
amount: 2500,
hidden: false,
members: None,
blossom: true,
livekit: true,