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:
@@ -51,6 +51,7 @@ export default function LayoutContent({ children }: { children: React.ReactNode
|
||||
allowPersonalWorkspace={false}
|
||||
showFaq={false}
|
||||
showSecurity={false}
|
||||
showPricing={true}
|
||||
/>
|
||||
<main className="flex-1 pt-24 pb-8">
|
||||
{children}
|
||||
@@ -58,6 +59,7 @@ export default function LayoutContent({ children }: { children: React.ReactNode
|
||||
<Footer
|
||||
LinkComponent={Link}
|
||||
appName="Pulse"
|
||||
showPricing={true}
|
||||
/>
|
||||
</>
|
||||
)
|
||||
|
||||
9
app/pricing/page.tsx
Normal file
9
app/pricing/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import PricingSection from '@/components/PricingSection'
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<div className="min-h-screen pt-20">
|
||||
<PricingSection />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user