import cn from "../../lib/helpers/classnames"; import Link from "../Link"; import type { ComponentPropsWithoutRef } from "react"; export type PageTitleProps = ComponentPropsWithoutRef<"h1"> & { canonical: string; }; const PageTitle = ({ canonical, className, children, ...rest }: PageTitleProps) => { return (