Pricing Page and Subscription Guard

This commit is contained in:
ajaysi
2025-10-13 10:25:57 +05:30
parent 20b01717cd
commit c38812b6c5
11 changed files with 1838 additions and 19 deletions

View File

@@ -570,6 +570,19 @@ const Landing: React.FC = () => {
<SolopreneurDilemma />
</Suspense>
{/* Pricing Section - Embedded in Landing */}
<Box
id="pricing"
sx={{
py: 8,
background: `linear-gradient(180deg, ${alpha(theme.palette.background.default, 0.95)} 0%, ${alpha(theme.palette.background.paper, 0.98)} 100%)`,
}}
>
<Suspense fallback={<LoadingSpinner />}>
{React.createElement(lazy(() => import('../Pricing/PricingPage')))}
</Suspense>
</Box>
{/* Introducing ALwrity Section with Background - Lazy Loaded */}
<Suspense fallback={<LoadingSpinner />}>
<IntroducingAlwrity />