export const plans = [ { title: "Hobby", id: "hobby", description: "Perfect for personal projects", price: 0, limits: { monitors: 1, regions: 35, periodicity: "10m", "status-pages": 1, members: 1, "notification-channels": 1, "custom-domain": false, "password-protection": false, "status-subscribers": false, "audit-log": false, }, }, { title: "Starter", id: "starter", description: "Perfect for uptime monitoring", price: 30, limits: { monitors: 10, regions: 35, periodicity: "1m", "status-pages": 1, members: Number.POSITIVE_INFINITY, "notification-channels": 10, "custom-domain": true, "password-protection": true, "status-subscribers": true, "audit-log": false, }, }, { title: "Pro", id: "team", description: "Perfect for global synthetic monitoring", price: 100, limits: { monitors: 100, regions: 35, periodicity: "30s", "status-pages": 5, members: Number.POSITIVE_INFINITY, "notification-channels": 20, "custom-domain": true, "password-protection": true, "status-subscribers": true, "audit-log": true, }, }, ];