2024-06-24 10:02:18 +02:00
import { useRouter } from "next/router" ;
2024-07-20 21:04:38 +02:00
import Logo from "./components/shared/Logo" ;
2024-06-24 10:02:18 +02:00
export default {
2024-06-24 11:00:02 +02:00
head : (
< >
2024-08-01 17:17:45 +02:00
< meta
name = "description"
2024-08-02 19:41:45 +02:00
content = "The SVR.JS documentation provides comprehensive information and instructions on how to use and configure the SVR.JS web server. This documentation is also a valuable resource for web developers."
2024-08-01 17:17:45 +02:00
/ >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
< meta property = "og:title" content = "Documentation - SVRJS" / >
2024-06-24 11:00:02 +02:00
< meta
property = "og:description"
2024-08-02 19:41:45 +02:00
content = "The SVR.JS documentation provides comprehensive information and instructions on how to use and configure the SVR.JS web server. This documentation is also a valuable resource for web developers."
2024-08-01 17:17:45 +02:00
/ >
< meta property = "og:type" content = "website" / >
< meta property = "og:url" content = "https://svrjs.org" / >
< meta
property = "og:image"
content = "https://svrjs.vercel.app/metadata/svrjs-cover.png"
/ >
< title > Documentation - SVRJS < / title >
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:title" content = "Documentation - SVRJS" / >
< meta
name = "twitter:description"
2024-08-02 19:41:45 +02:00
content = "The SVR.JS documentation provides comprehensive information and instructions on how to use and configure the SVR.JS web server. This documentation is also a valuable resource for web developers."
2024-08-01 17:17:45 +02:00
/ >
< meta
name = "twitter:image"
content = "https://svrjs.vercel.app/metadata/svrjs-cover.png"
2024-06-24 11:00:02 +02:00
/ >
< / >
) ,
2024-06-24 10:02:18 +02:00
editLink : {
component : null ,
} ,
feedback : {
content : null ,
} ,
2024-07-20 21:04:38 +02:00
logo : < Logo width = { 120 } height = { 40 } / > ,
2024-06-24 10:02:18 +02:00
project : {
2024-06-25 19:46:25 +02:00
icon : (
< svg
2024-06-25 20:47:24 +02:00
xmlns = "http://www.w3.org/2000/svg"
width = { 25 }
height = { 25 }
2024-06-25 19:46:25 +02:00
viewBox = "0 0 123 123"
fill = "none"
>
2024-06-25 20:47:24 +02:00
< path
fill = "currentColor"
d = "M120.208 55.953 66.715 2.463a7.885 7.885 0 0 0-11.158 0l-11.109 11.11 14.088 14.088a9.373 9.373 0 0 1 11.87 11.948l13.578 13.579a9.368 9.368 0 0 1 9.704 2.23 9.386 9.386 0 0 1-6.64 16.025 9.393 9.393 0 0 1-9.21-7.547 9.384 9.384 0 0 1 .526-5.416L65.697 45.817v33.33a9.385 9.385 0 0 1 2.48 15.053 9.386 9.386 0 0 1-15.311-3.046A9.388 9.388 0 0 1 54.9 80.923a9.378 9.378 0 0 1 3.078-2.052V45.235a9.336 9.336 0 0 1-3.078-2.047A9.4 9.4 0 0 1 52.88 32.92l-13.89-13.89L2.311 55.703a7.89 7.89 0 0 0 0 11.16l53.495 53.497a7.895 7.895 0 0 0 11.157 0l53.244-53.245a7.9 7.9 0 0 0 0-11.162Z"
/ >
2024-06-25 19:46:25 +02:00
< / svg >
) ,
2024-06-25 20:47:24 +02:00
link : "https://git.svrjs.org" ,
2024-06-24 10:02:18 +02:00
} ,
footer : {
component : null ,
} ,
useNextSeoProps() {
const { asPath } = useRouter ( ) ;
if ( asPath !== "/" ) {
return {
titleTemplate : "%s – SVRJS" ,
} ;
}
} ,
2024-06-24 10:56:10 +02:00
primaryHue : 136 ,
primarySaturation : 75 ,
2024-06-24 10:02:18 +02:00
// banner: {
// key: "svrjs",
// text: <a href="https://svrjs.org">🎉 Check out SVRJS Now. Read more →</a>,
// },
} ;