import clsx from "clsx"; import Link from "../Link"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./PageTitle.module.css"; export type PageTitleProps = ComponentPropsWithoutRef<"h1"> & { canonical: string; }; const PageTitle = ({ canonical, className, children, ...rest }: PageTitleProps) => { return (