fixed: home link strong css, added more markdown examples

This commit is contained in:
Wayne Sutton
2025-12-21 18:47:17 -08:00
parent f598c3e903
commit 5a7824b2b8
6 changed files with 484 additions and 14 deletions

View File

@@ -97,8 +97,16 @@ export default function Home() {
<strong>
An open-source publishing framework for AI agents and developers.
</strong>{" "}
Write markdown, sync from the terminal. <br />
<br />
Write markdown, sync from the terminal.
<a
href="https://github.com/waynesutton/markdown-site"
target="_blank"
rel="noopener noreferrer"
>
Fork it
</a>
, customize it, ship it.
</p>
<p className="home-bio">{siteConfig.bio}</p>

View File

@@ -402,6 +402,20 @@ body {
line-height: 1.7;
}
/* Links inside home intro and bio sections */
.home-intro a,
.home-bio a {
color: var(--link-color);
text-decoration: underline;
text-underline-offset: 3px;
transition: color 0.2s ease;
}
.home-intro a:hover,
.home-bio a:hover {
color: var(--link-hover);
}
.home-featured {
margin: 24px 0;
}