import Markdown from "react-markdown"; import { app } from "../app.ts"; import { ReactElement, ReactNode } from "react"; export default function AboutPage() { return (
{ const href = props.href as string; // @ts-ignore if (props.children?.length === 2) { // @ts-ignore const first = props.children[0] as ReactNode; // @ts-ignore const second = props.children[1] as ReactNode; if ( typeof first === "object" && (typeof second === "string" || typeof second === "object") ) { const img = first as ReactElement; // @ts-ignore if (img.type === "img") { return (
{img}
{second}
); } } } return ( {props.children} ); }, }} > {app.siteInfo}
); }