mirror of
https://github.com/supabase/supabase.git
synced 2026-06-19 20:47:19 +08:00
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? Created a new solution page for Hosted Postgres. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added Hosted Postgres solution with a dedicated landing page (hero, features, pricing comparison, security, results, CTAs) * Introduced a reusable pricing comparison table component * Enhanced feature grids to support optional headers and richer icon options * **Updates** * Updated company stats (databases managed → 44M, daily launches → 200K, registered developers → 9M) * Added Hosted Postgres link to Solutions navigation * **Refactor** * Consolidated and exported component prop interfaces for cleaner prop contracts <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Terry Sutton <saltcod@gmail.com>
26 lines
612 B
TypeScript
26 lines
612 B
TypeScript
// For each stat we provide text and number
|
|
// Text is used for labels and static components
|
|
// Number is used for animated components (eg. AnimatedCounter)
|
|
export const companyStats = {
|
|
databasesManaged: {
|
|
number: 44_000_000,
|
|
text: '44,000,000+',
|
|
label: 'Databases Created',
|
|
},
|
|
databasesLaunchedDaily: {
|
|
number: 200_000,
|
|
text: '200,000+',
|
|
label: 'Databases launched daily',
|
|
},
|
|
developersRegistered: {
|
|
number: 9_000_000,
|
|
text: '9,000,000+',
|
|
label: 'Users',
|
|
},
|
|
developersRegisteredChange: {
|
|
number: 21.4,
|
|
text: '+21.4%',
|
|
label: 'Users growth',
|
|
},
|
|
}
|