portfolio/mdx-components.tsx
Ryan Freeman a8385c50d9
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m38s
Add hover state to anchor links
2024-09-18 20:49:53 +01:00

24 lines
1000 B
TypeScript

// @ts-nocheck
import type {MDXComponents} from 'mdx/types'
import {createSlug} from './lib/createSlug'
import Link from 'next/link'
// 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 components from
// other libraries.
// This file is required to use MDX in `app` directory.
export function useMDXComponents(components: MDXComponents): MDXComponents {
return {
h2: ({children}) =>
<h2 id={createSlug(children.toString())}
className='group'>{children}
<Link className='ml-1 group-hover:opacity-100 opacity-0 transition-opacity ease-in'
href={`#${createSlug(children.toString())}`}
name="anchor">#</Link></h2>,
// Allows customizing built-in components, e.g. to add styling.
// h1: ({ children }) => <h1 style={{ fontSize: "100px" }}>{children}</h1>,
...components,
}
}