import { cn } from '@gentleduck/libs/cn' import Link from 'next/link' import type React from 'react' interface IHeadingProps extends React.HTMLAttributes {} interface IAnchorProps extends React.HTMLAttributes {} interface IParagraphProps extends React.HTMLAttributes {} export function H1({ className, ...props }: IHeadingProps) { return (

) } export function H2({ className, ...props }: IHeadingProps) { return (

) } export function H3({ className, ...props }: IHeadingProps) { return (

) } export function H4({ className, ...props }: IHeadingProps) { return (

) } export function H5({ className, ...props }: IHeadingProps) { return (

) } export function H6({ className, ...props }: IHeadingProps) { return
} export function A({ className, ...props }: IAnchorProps) { return } export function P({ className, ...props }: IParagraphProps) { return

} export function LinkBlock({ className, ...props }: React.ComponentProps) { return } export function LinkedCard({ className, ...props }: React.ComponentProps) { return ( ) } export function Hr({ ...props }: React.HTMLAttributes) { return


}