mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
17 lines
334 B
TypeScript
17 lines
334 B
TypeScript
import type { Metadata } from "next";
|
|
import PricingBasic from "@/components/pricing/pricing-section";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Pricing | SurfSense",
|
|
description: "Explore SurfSense plans and pricing options.",
|
|
};
|
|
|
|
const page = () => {
|
|
return (
|
|
<div>
|
|
<PricingBasic />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|