2026-03-27 14:44:40 +02:00
|
|
|
import type { Metadata } from "next";
|
2026-04-11 23:38:12 -07:00
|
|
|
import { BreadcrumbNav } from "@/components/seo/breadcrumb-nav";
|
2025-10-02 18:10:07 -07:00
|
|
|
import PricingBasic from "@/components/pricing/pricing-section";
|
|
|
|
|
|
2026-03-27 14:44:40 +02:00
|
|
|
export const metadata: Metadata = {
|
2026-04-11 23:38:12 -07:00
|
|
|
title: "Pricing | SurfSense - Free AI Search Plans",
|
|
|
|
|
description:
|
|
|
|
|
"Explore SurfSense plans and pricing. Use ChatGPT, Claude AI, and any AI model free. Open source NotebookLM alternative for teams.",
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://surfsense.com/pricing",
|
|
|
|
|
},
|
2026-03-27 14:44:40 +02:00
|
|
|
};
|
|
|
|
|
|
2025-10-02 18:10:07 -07:00
|
|
|
const page = () => {
|
2026-03-27 14:57:44 +02:00
|
|
|
return (
|
|
|
|
|
<div>
|
2026-04-11 23:38:12 -07:00
|
|
|
<div className="container mx-auto pt-24 px-4">
|
|
|
|
|
<BreadcrumbNav
|
|
|
|
|
items={[
|
|
|
|
|
{ name: "Home", href: "/" },
|
|
|
|
|
{ name: "Pricing", href: "/pricing" },
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2026-03-27 14:57:44 +02:00
|
|
|
<PricingBasic />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-10-02 18:10:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default page;
|