first blog more written

This commit is contained in:
2026-04-07 21:24:58 -05:00
parent fdbc4b1ed8
commit c2ae195cb8
15 changed files with 180 additions and 107 deletions

View File

@@ -1,7 +1,6 @@
import "./about.sass";
import {HTMLProps, lazy} from "react";
import {Link} from "../router/Link";
import {Path} from "../router/router";
import {lazy} from "react";
import {ExternalLink} from "../router/Link";
const About = lazy(() => import("./About.mdx"));
@@ -16,9 +15,3 @@ export default function AboutPage() {
<div className="edge"/>
</main>
}
function ExternalLink(props: HTMLProps<HTMLAnchorElement>) {
return (
<Link {...props} href={props.href as Path} className="external-link" target="_blank">{props.children}</Link>
)
}