import { useTheme } from "next-themes"; import { Giscus } from "@giscus/react"; import { giscusConfig } from "../../lib/config"; import type { GiscusProps } from "@giscus/react"; import styles from "./Comments.module.css"; type Props = { title: string; }; const Comments = ({ title }: Props) => { const { resolvedTheme } = useTheme(); return (