import Link from "@/components/TempDesignSystem/Link" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import Title from "@/components/TempDesignSystem/Text/Title" import styles from "./sectionHeader.module.css" import type { HeaderProps } from "@/types/components/myPages/header" export default function SectionHeader({ link, subtitle, title, topTitle = false, }: HeaderProps) { return (
{title} {link ? ( {link.text} ) : null} {subtitle}
) }