- Removed the custom link component in MDX and replaced it with standard anchor tags for external links. - Updated offer and privacy policy documents to use environment variables for dynamic URLs instead of custom components. - Improved formatting for better readability in the offer and privacy policy sections.
13 lines
387 B
TypeScript
13 lines
387 B
TypeScript
import { type MDXComponents } from 'mdx/types';
|
|
|
|
// This file allows you to provide custom React components
|
|
// to be used in MDX files. You can import and use any
|
|
// React component you want, including inline styles,
|
|
// components from other libraries, and more.
|
|
|
|
const components = {} satisfies MDXComponents;
|
|
|
|
export function useMDXComponents(): MDXComponents {
|
|
return components;
|
|
}
|