mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-02 19:55:18 +02:00
- Revised the pricing page title and description to reflect new features including AI workspace, automations, and agents. - Enhanced the FAQ section with detailed information about AI automations and agents, including scheduling and event-triggered workflows. - Updated demo plans to include features related to AI automations and agents, ensuring clarity on capabilities and costs. - Added a new automation illustration to the homepage features grid, emphasizing the automation capabilities of SurfSense.
30 lines
857 B
TypeScript
30 lines
857 B
TypeScript
import type { Metadata } from "next";
|
|
import PricingBasic from "@/components/pricing/pricing-section";
|
|
import { BreadcrumbNav } from "@/components/seo/breadcrumb-nav";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Pricing | SurfSense - Free AI Workspace, Automations & Agents",
|
|
description:
|
|
"Explore SurfSense plans and pricing. Start free with 500 pages & $5 in premium credits. Run AI automations and agents, use ChatGPT, Claude AI, and premium AI models, and pay as you go at provider cost.",
|
|
alternates: {
|
|
canonical: "https://www.surfsense.com/pricing",
|
|
},
|
|
};
|
|
|
|
const page = () => {
|
|
return (
|
|
<div>
|
|
<div className="container mx-auto pt-24 px-4">
|
|
<BreadcrumbNav
|
|
items={[
|
|
{ name: "Home", href: "/" },
|
|
{ name: "Pricing", href: "/pricing" },
|
|
]}
|
|
/>
|
|
</div>
|
|
<PricingBasic />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|