mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
30 lines
803 B
TypeScript
30 lines
803 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 Search Plans",
|
|
description:
|
|
"Explore SurfSense plans and pricing. Start free with 500 pages & 3M premium tokens. Use ChatGPT, Claude AI, and premium AI models. Pay-as-you-go tokens at $1 per million.",
|
|
alternates: {
|
|
canonical: "https://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;
|