Skip to content

Commit

Permalink
acute: ooops forgot something to commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnl committed Feb 7, 2025
1 parent ed785ef commit cbe0798
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/mdx/mdxComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import isValidHttpUrl from "@/utils/isValidHttpUrl";
import { getImageDetails } from "@/utils/image";
import ImageGalleryWithLightbox, { GalleryImage } from "../ImageGalleryWithLightbox/ImageGalleryWithLightbox";
import { Terminal } from "./Terminal";
import { CapsuleButton } from "../Button/CapsuleButton";

const Blockquote = ({children}: PropsWithChildren) => <blockquote className={styles.blockquote}>{children}</blockquote>
const MdxImageParent = ({children, inline}: PropsWithChildren & {inline?: boolean}) => <div className={styles.mdxImageParent + (inline ? ' ' + styles.inline : '')}>{children}</div>
Expand Down Expand Up @@ -106,5 +107,6 @@ export const mdxComponents = (slug?: string) => ({
ImageGallery: slug ? MdxImageGallery(slug) : Empty,
Terminal,
CodeBlock,
CapsuleButton,
PresentationCard: slug ? PresentationCard(slug) : Empty,
})

0 comments on commit cbe0798

Please sign in to comment.