chore(docs): nextui inc added to the footer

This commit is contained in:
Junior Garcia 2023-11-12 11:24:21 -03:00
parent 12cebcfdac
commit a8dc5b429a
2 changed files with 5 additions and 8 deletions

View File

@ -3,9 +3,8 @@
import dynamic from "next/dynamic";
import {usePathname} from "next/navigation";
import {siteConfig} from "@/config/site";
import {getCurrentYear} from "@/utils/time";
const Link = dynamic(() => import("@nextui-org/react").then((mod) => mod.Link));
const VercelCallout = dynamic(() => import("./vercel-callout").then((mod) => mod.VercelCallout));
export const Footer = () => {
@ -18,12 +17,7 @@ export const Footer = () => {
return (
<footer className="container mx-auto max-w-7xl pb-12 px-12">
<div className="flex flex-col justify-center items-center gap-1">
<p className="text-sm text-default-400">
Created&nbsp;by&nbsp;
<Link isExternal className="text-sm" href={siteConfig.links.portfolio}>
Junior Garcia
</Link>
</p>
<p className="text-sm text-default-400">© {getCurrentYear()} NextUI Inc.</p>
<VercelCallout />
</div>
</footer>

3
apps/docs/utils/time.ts Normal file
View File

@ -0,0 +1,3 @@
export function getCurrentYear(): number {
return new Date().getFullYear();
}