/** * @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 { Crisp } from "crisp-sdk-web"; 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 => { if (typeof window !== "undefined") { Crisp.configure("5398ce41-4ceb-4e31-9049-4c784a70179a"); } return (
); };