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