mirror of
https://github.com/waynesutton/markdown-site.git
synced 2026-01-12 04:09:14 +00:00
fixed: home link strong css, added more markdown examples
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user