"use client"; import React from "react"; interface HeaderProps { title: string; description?: string; author?: string; robots?: string; } const Header: React.FC = ({ title, description, author, robots, }) => { return ( <> {description && } {author && } {title} {robots && } ); }; export default Header;