import Head from "next/head"; interface Props { title: string; description: string; } export default function MetaInformation({ title, description }: Props) { const pageTitle = `${title} | Open-Source Survey Software`; return (