Update src/app/page.tsx

This commit is contained in:
2026-03-19 09:15:50 +00:00
parent 7d752ce561
commit 6aeff3f784

View File

@@ -97,7 +97,7 @@ const borderGlowFeatures = [
const pricingPlans = [
{
id: "starter", badge: "For Individuals", badgeIcon: Sparkles,
price: "$49/month", subtitle: "Perfect for solo developers and small projects", buttons: [{ text: "Start Free Trial", href: "https://devflow.example.com/signup?plan=starter" }],
price: "$49/month", subtitle: "Perfect for solo developers and small projects", buttons: [{ text: "Deploy in 60 Seconds", href: "https://devflow.example.com/signup?plan=starter" }],
features: [
"Up to 3 simultaneous deployments", "50GB storage", "Basic monitoring and logs", "Community support", "API access", "Monthly cost: $49"
],
@@ -105,7 +105,7 @@ const pricingPlans = [
{
id: "professional", badge: "Most Popular", badgeIcon: Star,
price: "$199/month", subtitle: "For growing teams and production apps", buttons: [
{ text: "Start Free Trial", href: "https://devflow.example.com/signup?plan=professional" },
{ text: "Deploy in 60 Seconds", href: "https://devflow.example.com/signup?plan=professional" },
{ text: "Contact Sales", href: "#contact" },
],
features: [
@@ -166,7 +166,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
brandName="DevFlow"
navItems={navItems}
button={{ text: "Start Free Trial", href: "#contact" }}
button={{ text: "Deploy in 60 Seconds", href: "#contact" }}
animateOnLoad={true}
/>
</div>
@@ -189,7 +189,7 @@ export default function LandingPage() {
]}
avatarText="Trusted by 5,000+ developers worldwide"
buttons={[
{ text: "Start Free Trial", href: "https://devflow.example.com/signup" },
{ text: "Deploy in 60 Seconds", href: "https://devflow.example.com/signup" },
{ text: "View Documentation", href: "https://docs.devflow.example.com" },
]}
buttonAnimation="slide-up"
@@ -291,4 +291,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}