mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 19:35:27 -04:00
4858c8928c
- Replaced GeistSans and GeistMono with Inter and JetBrainsMono in globals.css and layout.tsx. - Updated font variable names to reflect the new font choices in fonts.ts.
27 lines
693 B
TypeScript
27 lines
693 B
TypeScript
import { env } from "@/lib/env";
|
|
import Link from "next/link";
|
|
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">
|
|
All content is licensed under{" "}
|
|
<Link href="/license" className="underline underline-offset-4">
|
|
{siteConfig.license}
|
|
</Link>
|
|
. View source on{" "}
|
|
<a
|
|
href={`https://github.com/${env.NEXT_PUBLIC_GITHUB_REPO}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="underline underline-offset-4"
|
|
>
|
|
GitHub
|
|
</a>
|
|
.
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export { Footer };
|