1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 18:15:33 -04:00
Files
jarv.is/components/layout/footer.tsx
T

28 lines
691 B
TypeScript

import Link from "next/link";
import siteConfig from "@/lib/config/site";
const Footer = () => (
<footer
style={{ viewTransitionName: "persistent-footer" }}
className="text-muted-foreground border-border mt-8 w-full border-t py-6 text-xs leading-loose"
>
All content is licensed under{" "}
<Link href="/license" className="underline underline-offset-2">
{siteConfig.license}
</Link>
. View source on{" "}
<a
href={`https://github.com/${process.env.NEXT_PUBLIC_GITHUB_REPO}`}
target="_blank"
rel="noopener noreferrer"
className="underline underline-offset-2"
>
GitHub
</a>
.
</footer>
);
export { Footer };