2025-09-30 20:27:34 -07:00
|
|
|
"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: "",
|
2026-04-08 16:00:43 -07:00
|
|
|
billingText: "500 pages included",
|
2025-09-30 21:53:10 -07:00
|
|
|
features: [
|
2026-02-27 15:31:31 -08:00
|
|
|
"Self Hostable",
|
2026-04-07 19:11:57 -07:00
|
|
|
"500 pages included to start",
|
|
|
|
|
"Earn up to 3,000+ bonus pages for free",
|
2026-03-31 18:39:45 -07:00
|
|
|
"Includes access to OpenAI text, audio and image models",
|
2026-02-27 15:31:31 -08:00
|
|
|
"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
|
|
|
],
|
2026-02-27 15:31:31 -08:00
|
|
|
description: "",
|
2026-02-03 22:19:10 -05:00
|
|
|
buttonText: "Get Started",
|
2026-02-27 15:45:48 -08:00
|
|
|
href: "/login",
|
2026-02-03 17:02:26 -05:00
|
|
|
isPopular: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
2026-03-31 18:39:45 -07:00
|
|
|
name: "PAY AS YOU GO",
|
|
|
|
|
price: "1",
|
|
|
|
|
yearlyPrice: "1",
|
|
|
|
|
period: "1,000 pages",
|
|
|
|
|
billingText: "No subscription, buy only when you need more",
|
2026-02-03 17:02:26 -05:00
|
|
|
features: [
|
2026-02-03 22:19:10 -05:00
|
|
|
"Everything in Free",
|
2026-03-31 18:39:45 -07:00
|
|
|
"Buy 1,000-page packs at $1 each",
|
2026-02-27 15:31:31 -08:00
|
|
|
"Priority support on Discord",
|
2026-02-03 17:02:26 -05:00
|
|
|
],
|
2026-02-27 15:31:31 -08:00
|
|
|
description: "",
|
|
|
|
|
buttonText: "Get Started",
|
2026-02-27 15:45:48 -08:00
|
|
|
href: "/login",
|
2026-03-31 18:39:45 -07:00
|
|
|
isPopular: false,
|
2025-09-30 21:53:10 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "ENTERPRISE",
|
2026-02-04 15:30:15 -05:00
|
|
|
price: "Contact Us",
|
|
|
|
|
yearlyPrice: "Contact Us",
|
|
|
|
|
period: "",
|
|
|
|
|
billingText: "",
|
2025-09-30 21:53:10 -07:00
|
|
|
features: [
|
2026-03-31 18:39:45 -07:00
|
|
|
"Everything in Pay As You Go",
|
2026-02-03 17:02:26 -05:00
|
|
|
"On-prem or VPC deployment",
|
2026-02-27 15:31:31 -08:00
|
|
|
"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,
|
|
|
|
|
},
|
2025-09-30 20:27:34 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
function PricingBasic() {
|
2025-09-30 21:53:10 -07:00
|
|
|
return (
|
2026-03-31 18:39:45 -07:00
|
|
|
<Pricing
|
|
|
|
|
plans={demoPlans}
|
|
|
|
|
title="SurfSense Pricing"
|
2026-04-08 18:37:43 -07:00
|
|
|
description="Start free with 500 pages and pay as you go."
|
2026-03-31 18:39:45 -07:00
|
|
|
/>
|
2025-09-30 21:53:10 -07:00
|
|
|
);
|
2025-09-30 20:27:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default PricingBasic;
|