'use client' import { Infotip } from '@/app/components/base/infotip' export default function TitleInfotip({ content }: { content: string }) { return ( {content} ) }