diff --git a/apps/landing/src/pages/vs/brevo.tsx b/apps/landing/src/pages/vs/brevo.tsx index 07ed56e..9c38a4d 100644 --- a/apps/landing/src/pages/vs/brevo.tsx +++ b/apps/landing/src/pages/vs/brevo.tsx @@ -94,7 +94,7 @@ export default function BrevoComparison() {

- Developer-first alternative + Open-source alternative
for Brevo

diff --git a/apps/landing/src/pages/vs/index.tsx b/apps/landing/src/pages/vs/index.tsx new file mode 100644 index 0000000..1fc281e --- /dev/null +++ b/apps/landing/src/pages/vs/index.tsx @@ -0,0 +1,294 @@ +import {Footer, Navbar} from '../../components'; +import {motion} from 'framer-motion'; +import {DASHBOARD_URI, WIKI_URI} from '../../lib/constants'; +import React from 'react'; +import Link from 'next/link'; +import {NextSeo} from 'next-seo'; +import {ArrowRight, Code, DollarSign, Mail} from 'lucide-react'; + +const competitors = [ + { + name: 'Postmark', + slug: 'postmark', + description: 'Transactional email reliability with marketing power', + features: ['Transactional Emails', 'Marketing Campaigns', 'Workflow Automation'], + }, + { + name: 'SendGrid', + slug: 'sendgrid', + description: "Enterprise email platform vs Plunk's simplicity", + features: ['Transactional Emails', 'Marketing Campaigns', 'API-First Design'], + }, + { + name: 'Mailgun', + slug: 'mailgun', + description: 'Developer-focused email vs open-source alternative', + features: ['Transactional Emails', 'Marketing Campaigns', 'SMTP Support'], + }, + { + name: 'Mailchimp', + slug: 'mailchimp', + description: 'All-in-one marketing vs specialized email platform', + features: ['Marketing Campaigns', 'Transactional Emails', 'CRM Integration'], + }, + { + name: 'Resend', + slug: 'resend', + description: 'Modern transactional email vs comprehensive solution', + features: ['Transactional Emails', 'Developer Experience', 'Marketing Ready'], + }, + { + name: 'Customer.io', + slug: 'customerio', + description: 'Behavioral email vs workflow automation', + features: ['Behavioral Emails', 'Transactional Emails', 'Automation'], + }, + { + name: 'Loops', + slug: 'loops', + description: 'Simple newsletter tool vs full email platform', + features: ['Newsletters', 'Transactional Emails', 'Simple Setup'], + }, + { + name: 'Brevo', + slug: 'brevo', + description: 'European email platform vs global open-source', + features: ['Transactional Emails', 'Marketing Campaigns', 'GDPR Compliant'], + }, +]; + +/** + * Plunk vs Competitors index page + */ +export default function CompetitorsIndex() { + return ( + <> + + + + +
+ {/* Hero Section */} +
+
+ + +
+ Email Platform Comparisons +
+ +

+ Plunk vs the +
+ competition +

+ +

+ Compare Plunk with leading email platforms. See why developers choose our open-source alternative for + transactional emails plus marketing features. +

+ +
+ + + Get started free + + + + + View documentation + +
+
+
+ + {/* Competitors Grid */} +
+ +

+ Compare Plunk with Industry Leaders +

+

See how Plunk stacks up against popular email platforms

+
+ +
+ {competitors.map((competitor, index) => ( + + +
+

{competitor.name}

+
+

{competitor.description}

+
+ {competitor.features.map(feature => ( +
+
+ {feature} +
+ ))} +
+ + + ))} +
+
+ + {/* Why Choose Plunk */} +
+ +

Why Choose Plunk

+

One platform for all your email needs

+
+ +
+ + +

Transactional + Marketing

+

+ Send transactional emails with the same reliability as dedicated providers, plus marketing campaigns, + automation, and segmentation—all in one platform. +

+
+ + + +

Open Source & Self-Hostable

+

+ AGPL-3.0 licensed code you can inspect, modify, and self-host. Full control over your data and + infrastructure. No vendor lock-in. +

+
+ + + +

Simple Pricing

+

+ Pay-as-you-go pricing with all features included. No separate charges for transactional vs marketing + emails. No tiers, no commitments. +

+
+
+
+ + {/* CTA */} +
+ +

Ready to try Plunk?

+

+ Join thousands of developers using Plunk for reliable email delivery. Start free, scale as you grow. +

+
+ + Start free trial + + + View pricing + +
+
+
+
+ +