/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ "use client"; import { faComments } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { usePathname } from "next/navigation"; import Script from "next/script"; import React, { type JSX } from "react"; /** * Conditionally renders the footer component when * not on the home page. * @returns A JSX element. */ export const Footer = (): JSX.Element | null => { const pathname = usePathname(); const isRootPath = pathname === "/"; if (isRootPath) { return null; } return (
); };