From 0254f5879642bc8324aef03d50dc5df3e4108a28 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:56:00 +0000 Subject: [PATCH] Update app/pricing/page.tsx --- app/pricing/page.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 app/pricing/page.tsx diff --git a/app/pricing/page.tsx b/app/pricing/page.tsx new file mode 100644 index 0000000..8ede0ed --- /dev/null +++ b/app/pricing/page.tsx @@ -0,0 +1,37 @@ +import { Container } from "@/components/container"; +import { Background } from "@/components/background"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Pricing } from "@/components/pricing"; +import { PricingTable } from "./pricing-table"; +import { Companies } from "@/components/companies"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Pricing - Mnémosyne", + description: + "Mnémosyne - Choose the perfect plan for your needs. Transparent pricing with powerful features included.", + openGraph: { + images: ["https://ai-saas-template-aceternity.vercel.app/banner.png"], + }, +}; + +export default function PricingPage() { + return ( +
+ + +
+ Simple pricing for your ease + + Mnémosyne offers flexible pricing plans to suit your needs. Choose + your plan and get started instantly with our powerful features. + +
+ + + +
+
+ ); +}