import type { HtmlProps } from '@/types'; type PageTitleProps = HtmlProps; export function PageTitle({ children }: PageTitleProps) { return (

{children}

); }