{t('description')}
This text uses the default font.
// Using a specific font family with Tailwind CSSconsole.log('Hello, world!');
// Using the decorative font for a special heading
This text uses a custom font.
``` -------------------------------- ### Set Stripe Webhook Secret Environment Variable Source: https://mksaas.com/docs/payment/stripe After starting the Stripe CLI listener, copy the provided webhook secret and add it to your environment variables file to verify webhook events. ```bash STRIPE_WEBHOOK_SECRET=whsec_... ``` -------------------------------- ### Premium Blog Post Configuration Source: https://mksaas.com/docs/blog Configure a blog post as premium by setting the `premium` field to `true` in the frontmatter. This enables conditional content display. ```mdx --- title: Premium Post ... premium: true --- This is the free content part. ...