feat: updated homepage and pricing

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-10-02 18:10:07 -07:00
parent 0fc241e5fa
commit 6415d4fd57
27 changed files with 857 additions and 998 deletions

View file

@ -4,55 +4,38 @@ import { Pricing } from "@/components/pricing";
const demoPlans = [
{
name: "STARTER",
price: "50",
yearlyPrice: "40",
period: "per month",
name: "COMMUNITY",
price: "0",
yearlyPrice: "0",
period: "forever",
features: [
"Up to 10 projects",
"Basic analytics",
"48-hour support response time",
"Limited API access",
"Community support",
"Supports 100+ LLMs",
"Supports local Ollama or vLLM setups",
"6000+ Embedding Models",
"50+ File extensions supported.",
"Podcasts support with local TTS providers.",
"Connects with 15+ external sources.",
"Cross-Browser Extension for dynamic webpages including authenticated content",
"Upcoming: Mergeable MindMaps",
"Upcoming: Note Management",
],
description: "Perfect for individuals and small projects",
buttonText: "Start Free Trial",
href: "/sign-up",
isPopular: false,
},
{
name: "PROFESSIONAL",
price: "99",
yearlyPrice: "79",
period: "per month",
features: [
"Unlimited projects",
"Advanced analytics",
"24-hour support response time",
"Full API access",
"Priority support",
"Team collaboration",
"Custom integrations",
],
description: "Ideal for growing teams and businesses",
description: "Open source version with powerful features",
buttonText: "Get Started",
href: "/sign-up",
href: "/docs",
isPopular: true,
},
{
name: "ENTERPRISE",
price: "299",
yearlyPrice: "239",
period: "per month",
price: "Contact Us",
yearlyPrice: "Contact Us",
period: "",
features: [
"Everything in Professional",
"Custom solutions",
"Dedicated account manager",
"1-hour support response time",
"SSO Authentication",
"Advanced security",
"Custom contracts",
"SLA agreement",
"Everything in Community",
"Priority Support",
"Access Controls",
"Multicollaborative and multiplayer features",
"Video generation",
"Advanced security features",
],
description: "For large organizations with specific needs",
buttonText: "Contact Sales",
@ -63,11 +46,7 @@ const demoPlans = [
function PricingBasic() {
return (
<Pricing
plans={demoPlans}
title="Simple, Transparent Pricing"
description="Choose the plan that works for you"
/>
<Pricing plans={demoPlans} title="SurfSense Pricing" description="Choose that works for you" />
);
}