SurfSense/surfsense_web/app/(home)/pricing/page.tsx

18 lines
334 B
TypeScript
Raw Normal View History

import type { Metadata } from "next";
2025-10-02 18:10:07 -07:00
import PricingBasic from "@/components/pricing/pricing-section";
export const metadata: Metadata = {
2026-03-27 14:57:44 +02:00
title: "Pricing | SurfSense",
description: "Explore SurfSense plans and pricing options.",
};
2025-10-02 18:10:07 -07:00
const page = () => {
2026-03-27 14:57:44 +02:00
return (
<div>
<PricingBasic />
</div>
);
2025-10-02 18:10:07 -07:00
};
export default page;