SurfSense/surfsense_web/components/pricing/pricing-section.tsx

75 lines
1.6 KiB
TypeScript
Raw Normal View History

"use client";
import { Pricing } from "@/components/pricing";
const demoPlans = [
2025-09-30 21:53:10 -07:00
{
2026-02-03 22:19:10 -05:00
name: "FREE",
2025-10-02 18:10:07 -07:00
price: "0",
yearlyPrice: "0",
2026-02-03 22:19:10 -05:00
period: "",
billingText: "500 pages included",
2025-09-30 21:53:10 -07:00
features: [
"Self Hostable",
"500 pages included to start",
"Earn up to 3,000+ bonus pages for free",
"Includes access to OpenAI text, audio and image models",
"Realtime Collaborative Group Chats with teammates",
2026-02-03 22:19:10 -05:00
"Community support on Discord",
2025-09-30 21:53:10 -07:00
],
description: "",
2026-02-03 22:19:10 -05:00
buttonText: "Get Started",
href: "/login",
isPopular: false,
},
{
name: "PAY AS YOU GO",
price: "1",
yearlyPrice: "1",
period: "1,000 pages",
billingText: "No subscription, buy only when you need more",
features: [
2026-02-03 22:19:10 -05:00
"Everything in Free",
"Buy 1,000-page packs at $1 each",
"Priority support on Discord",
],
description: "",
buttonText: "Get Started",
href: "/login",
isPopular: false,
2025-09-30 21:53:10 -07:00
},
{
name: "ENTERPRISE",
price: "Contact Us",
yearlyPrice: "Contact Us",
period: "",
billingText: "",
2025-09-30 21:53:10 -07:00
features: [
"Everything in Pay As You Go",
"On-prem or VPC deployment",
"Audit logs and compliance",
"SSO, OIDC & SAML",
2026-02-03 22:19:10 -05:00
"White-glove setup and deployment",
"Monthly managed updates and maintenance",
"SLA commitments",
"Dedicated support",
2025-09-30 21:53:10 -07:00
],
2026-02-03 22:19:10 -05:00
description: "Customized setup for large organizations",
2025-09-30 21:53:10 -07:00
buttonText: "Contact Sales",
href: "/contact",
isPopular: false,
},
];
function PricingBasic() {
2025-09-30 21:53:10 -07:00
return (
<Pricing
plans={demoPlans}
title="SurfSense Pricing"
description="Start free with 500 pages and pay as you go."
/>
2025-09-30 21:53:10 -07:00
);
}
export default PricingBasic;