1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 15:06:36 -04:00

move some non-post pages to mdx

This commit is contained in:
2025-03-07 11:53:23 -05:00
parent 8118b8501a
commit 354dade9aa
72 changed files with 811 additions and 1873 deletions

View File

@ -59,6 +59,13 @@
color: var(--colors-text) !important;
}
.comments {
margin-top: 2em;
padding-top: 2em;
border-top: 2px solid var(--colors-light);
min-height: 360px;
}
@media (max-width: 768px) {
.title {
font-size: 1.8em;

View File

@ -150,7 +150,7 @@ export default async function Page({ params }: { params: Promise<{ slug: string
</Content>
{!frontmatter.noComments && (
<div id="comments">
<div id="comments" className={styles.comments}>
<Comments title={frontmatter.title} />
</div>
)}