import type { SidePeekProps } from "./sidePeek" // Sidepeeks generally have important content that should be indexed by search engines. // The content is hidden behind a modal, but it is still important for SEO. // This component is used to provide SEO information for the sidepeek content. export default function SidePeekSEO({ title, children, }: React.PropsWithChildren>) { return (

{title}

{children}
) }