mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
32 lines
876 B
TypeScript
32 lines
876 B
TypeScript
"use client";
|
|
|
|
import dynamic from "next/dynamic";
|
|
import {usePathname} from "next/navigation";
|
|
|
|
import {siteConfig} from "@/config/site";
|
|
|
|
const Link = dynamic(() => import("@nextui-org/react").then((mod) => mod.Link));
|
|
const VercelCallout = dynamic(() => import("./vercel-callout").then((mod) => mod.VercelCallout));
|
|
|
|
export const Footer = () => {
|
|
const pathname = usePathname();
|
|
|
|
if (pathname.includes("/examples")) {
|
|
return null;
|
|
}
|
|
|
|
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 by
|
|
<Link isExternal className="text-sm" href={siteConfig.links.portfolio}>
|
|
Junior Garcia
|
|
</Link>
|
|
</p>
|
|
<VercelCallout />
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|