import { useRouter } from "next/router"; import Logo from "./components/shared/Logo"; export default { head: ( <> ), editLink: { component: null, }, feedback: { content: null, }, logo: , project: { icon: ( ), link: "https://git.svrjs.org", }, footer: { component: null, }, useNextSeoProps() { const { asPath } = useRouter(); if (asPath !== "/") { return { titleTemplate: "%s – SVRJS", }; } }, primaryHue: 136, primarySaturation: 75, // banner: { // key: "svrjs", // text: 🎉 Check out SVRJS Now. Read more →, // }, };