chore: update @ciphera-net/ui dependency to version 0.0.37 in package.json and package-lock.json; add showPricing prop to LayoutContent and Footer components

This commit is contained in:
Usman Baig
2026-01-30 20:27:50 +01:00
parent 6ffd5afc65
commit c0adc7fd63
5 changed files with 198 additions and 5 deletions

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

@@ -0,0 +1,9 @@
import PricingSection from '@/components/PricingSection'
export default function PricingPage() {
return (
<div className="min-h-screen pt-20">
<PricingSection />
</div>
)
}