Update app/pricing/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:30:16 +00:00
parent a553701915
commit 4216ebcb05
1 changed files with 11 additions and 0 deletions

11
app/pricing/page.tsx Normal file
View File

@ -0,0 +1,11 @@
import { Pricing } from "@/components/pricing";
import { Footer } from "@/components/footer";
export default function PricingPage() {
return (
<main className="pt-20">
<Pricing />
<Footer />
</main>
);
}