From c0adc7fd630738c77ecb1334776726e36a08b8d4 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 30 Jan 2026 20:27:50 +0100 Subject: [PATCH] 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 --- app/layout-content.tsx | 2 + app/pricing/page.tsx | 9 ++ components/PricingSection.tsx | 182 ++++++++++++++++++++++++++++++++++ package-lock.json | 8 +- package.json | 2 +- 5 files changed, 198 insertions(+), 5 deletions(-) create mode 100644 app/pricing/page.tsx create mode 100644 components/PricingSection.tsx diff --git a/app/layout-content.tsx b/app/layout-content.tsx index da822fe..d26bb88 100644 --- a/app/layout-content.tsx +++ b/app/layout-content.tsx @@ -51,6 +51,7 @@ export default function LayoutContent({ children }: { children: React.ReactNode allowPersonalWorkspace={false} showFaq={false} showSecurity={false} + showPricing={true} />
{children} @@ -58,6 +59,7 @@ export default function LayoutContent({ children }: { children: React.ReactNode