1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 20:15:31 -04:00

fix: image comparison component weirdness

This commit is contained in:
2026-01-28 17:11:28 -05:00
parent 4dca81b58a
commit 9afe8abfed
6 changed files with 52 additions and 126 deletions
+8 -7
View File
@@ -5,20 +5,21 @@ import siteConfig from "@/lib/config/site";
const Footer = () => {
return (
<footer className="text-muted-foreground mt-8 w-full py-6 text-center text-[13px] leading-loose">
Content <Link href="/license">licensed under {siteConfig.license}</Link>,{" "}
<Link href="/previously" title="Previously on...">
{siteConfig.copyrightYearStart}
</Link>{" "}
2026.{" "}
All content is licensed under{" "}
<Link href="/license" className="underline underline-offset-4">
{siteConfig.license}
</Link>
. Code is{" "}
<a
href={`https://github.com/${env.NEXT_PUBLIC_GITHUB_REPO}`}
target="_blank"
rel="noopener noreferrer"
title="View Source on GitHub"
className="font-medium underline underline-offset-4"
className="underline underline-offset-4"
>
View source.
open source
</a>
.
</footer>
);
};