1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-30 21:45:59 -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
+1
View File
@@ -1,4 +1,5 @@
.footer {
flex: 1;
width: 100%;
padding: 1.25em 1.5em;
border-top: 1px solid var(--colors-kindaLight);
+4 -4
View File
@@ -15,11 +15,11 @@ const Footer = ({ className, ...rest }: FooterProps) => {
<div className={styles.row}>
<div>
Content{" "}
<Link href="/license" title={config.license} underline={false} className={styles.link}>
<Link href="/license" title={config.license} plain className={styles.link}>
licensed under {config.licenseAbbr}
</Link>
,{" "}
<Link href="/previously" title="Previously on..." underline={false} className={styles.link}>
<Link href="/previously" title="Previously on..." plain className={styles.link}>
{config.copyrightYearStart}
</Link>{" "}
{new Date(process.env.RELEASE_DATE || Date.now()).getUTCFullYear()}.
@@ -35,7 +35,7 @@ const Footer = ({ className, ...rest }: FooterProps) => {
href="https://nextjs.org/"
title="Powered by Next.js"
aria-label="Next.js"
underline={false}
plain
className={clsx(styles.link, styles.hover)}
>
<SiNextdotjs className={styles.icon} />
@@ -44,7 +44,7 @@ const Footer = ({ className, ...rest }: FooterProps) => {
<Link
href={`https://github.com/${config.githubRepo}`}
title="View Source on GitHub"
underline={false}
plain
className={clsx(styles.link, styles.underline)}
>
View source.