app-jolly-ocelot-play/app/pricing/page.tsx

12 lines
229 B
TypeScript

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