import Head from "next/head"; import useConfig from "../hooks/config.hook"; const Meta = ({ title, description, }: { title: string; description?: string; }) => { const config = useConfig(); const metaTitle = `${title} - ${config.get("general.appName")}`; return ( {metaTitle} ); }; export default Meta;