"use client"; import { usePathname } from "next/navigation"; import clsx from "clsx"; import Link from "../Link"; import type { ComponentPropsWithoutRef } from "react"; import type { Route } from "next"; import styles from "./PageTitle.module.css"; export type PageTitleProps = ComponentPropsWithoutRef<"h1">; const PageTitle = ({ className, children, ...rest }: PageTitleProps) => { const pathname = usePathname() || ""; return (

{children}

); }; export default PageTitle;