1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-30 23:25:58 -04:00

properly import and optimize/cache images in markdown files

This commit is contained in:
2025-03-03 15:56:57 -05:00
parent 36faa6c234
commit ba10742c9b
71 changed files with 685 additions and 1100 deletions
-10
View File
@@ -14,13 +14,3 @@
margin: 0 auto;
display: block;
}
.stickyHeader {
position: sticky;
top: 0;
z-index: 1000;
}
.flexedFooter {
flex: 1;
}
+2 -2
View File
@@ -14,14 +14,14 @@ const Layout = ({ className, children, ...rest }: LayoutProps) => {
<SkipToContentLink />
<div className={clsx(styles.flex, className)} {...rest}>
<Header className={styles.stickyHeader} />
<Header />
<main className={styles.default}>
<SkipToContentTarget />
<div className={styles.container}>{children}</div>
</main>
<Footer className={styles.flexedFooter} />
<Footer />
</div>
</>
);