import Link from "next/link" import Title from "@/components/Title" import styles from "./header.module.css" import type { HeaderProps } from "@/types/components/myPages/stays/title" export default function Header({ title, subtitle, link }: HeaderProps) { return ( <>
{title && ( {title} )} {link && ( {link.text} )} {subtitle && ( {subtitle} )}
) }