mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-11 12:25:36 +02:00
* Refactor SubscriptionPage and enhance plan management UI - Streamlined SubscriptionPage by consolidating plan handling into FreePlan and ProPlan components for better organization. - Improved UI clarity by directly rendering plan components based on subscription status and enhancing overall user interaction. - Updated button labels for clarity and removed unnecessary components to create a cleaner interface. - Adjusted plan details and descriptions to provide clearer information on subscription benefits and features. * wip
13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
import nextra from 'nextra'
|
|
|
|
const withNextra = nextra({
|
|
latex: true,
|
|
search: {
|
|
codeblocks: false
|
|
},
|
|
contentDirBasePath: '/docs'
|
|
})
|
|
|
|
export default withNextra({
|
|
reactStrictMode: true
|
|
})
|