import Head from "next/head"; import React from "react"; interface Props { children: string | string[]; } export function Title(props: Props) { const children = typeof props.children === "string" ? [props.children] : props.children; children.push("CSC", "University of Waterloo"); return ( {children.join(" - ")} ); }