Skip to content

Commit 018c186

Browse files
committed
Add pricing file
1 parent 2146dfb commit 018c186

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

Diff for: examples/official-site/pricing.sql

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
SELECT 'shell' as component,
2+
'style_pricing.css' as css ;
3+
4+
5+
SELECT 'hero' as component,
6+
'DATAPAGE PRICING PLANS' as title,
7+
'
8+
> *Start free, launch with fixed costs, and scale efficiently.*
9+
10+
> If you have any questions regarding **DataPage.app**, fill out the form [*here*](https://beta.datapage.app/fill-the-form.sql) and we''ll get back to you shortly.' as description_md;
11+
12+
SELECT 'START PLAN' as title,
13+
'
14+
### **Price**: **€18/month** *(First 1 month FREE)*
15+
### **🚩[Register for the *START Plan*](https://buy.stripe.com/9AQeWCa6k85Q9gY8wy)**
16+
---
17+
- **Database Size**: **128MB**
18+
- **Ideal For**: Testing and small-scale projects.
19+
- **Features**:
20+
- Basic SQLPage hosting.
21+
- Essential components for simple applications.
22+
- Community Support via forums.
23+
---
24+
### **🚩[Register for the *START Plan*](https://buy.stripe.com/9AQeWCa6k85Q9gY8wy)**
25+
'
26+
as description_md,
27+
'player-play' as icon,
28+
'blue' as color;
29+
30+
SELECT 'PRO PLAN' as title,
31+
'
32+
### **Price**: **€40/month** *(First 1 month FREE)*
33+
### **🚩[Register for the *PRO Plan*](https://buy.stripe.com/eVabKqces99U1OweUX)**
34+
---
35+
- **Database Size**: **1GB**
36+
- **Ideal For**: Growing projects and businesses needing enhanced support and features
37+
- **Features**:
38+
- All *START plan* features.
39+
- **Priority support**: Get faster response times and direct assistance from our support team
40+
- **Custom Domain**: Use your custom domain name with your SQLPage app
41+
---
42+
43+
### **🚩[Register for the *PRO Plan*](https://buy.stripe.com/eVabKqces99U1OweUX)**
44+
'
45+
as description_md,
46+
'shield-check' as icon,
47+
'green' as color;
48+
49+
50+
51+
52+
SELECT 'ENTREPRISE PLAN' as title,
53+
'
54+
### **Price**: **€600/month** *(First 1 month FREE)*
55+
### **🚩[Register for the *ENTREPRISE Plan*](https://buy.stripe.com/8wM6q62DS5XI3WE4gk)**
56+
---
57+
- **Database**: **Custom Scaling**
58+
- **Ideal For**: Large-scale operations with custom needs.
59+
- **Features**:
60+
- All Pro Plan features.
61+
- **Custom Deployment**: Tailored deployment to suit your specific requirements, whether on-premises or in the cloud.
62+
- **Database Scaling**: Dynamically scale your database to handle increased traffic and storage needs.
63+
- **Authentication**: Implement OpenID Connect and OAuth2 for secure user authentication via Google, Facebook, or internal company accounts.
64+
- **Premium Components**: Access to exclusive, high-performance components for building complex applications.
65+
- **1-Hour Monthly Support**: Dedicated one-on-one support session with our experts each month.
66+
- **SLA Agreement**: Service Level Agreement with guaranteed uptime and response times.
67+
- **Custom Integration**: Personalized integration with your existing systems and workflows.
68+
- **Onboarding Assistance**: Get personalized setup and onboarding assistance for a smooth start.
69+
---
70+
71+
### **🚩[Register for the *ENTREPRISE Plan*](https://buy.stripe.com/8wM6q62DS5XI3WE4gk)**
72+
' as description_md,
73+
'bubble-plus' as icon,
74+
'red' as color;
75+
76+
SELECT 'text' as component,
77+
'' as title,
78+
'## **Ready to Get Started?**
79+
[Sign Up Now](https://datapage.app) and start building your SQLPage app with Datapage.app today!' as contents_md;

Diff for: examples/official-site/style_pricing.css

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/* Ensure all unordered and ordered lists are left-aligned */
2+
ul, ol {
3+
text-align: left; /* Aligns bullet points to the left */
4+
margin-left: 20px; /* Adds indentation for better readability */
5+
padding-left: 20px; /* Adds space between bullet and text */
6+
}
7+
8+
/* Optional: Style for the individual list items */
9+
li {
10+
margin-bottom: 10px; /* Adds space between list items */
11+
}
12+
13+
/* Optional: Ensure the body text is also left-aligned */
14+
body {
15+
text-align: left; /* Makes sure the overall page is left-aligned */
16+
}

0 commit comments

Comments
 (0)