2024-06-22 10:30:51 +02:00
import { Metadata } from "next" ;
2024-08-01 16:32:57 +02:00
// baseURL [ENV]
2024-06-22 10:30:51 +02:00
export const metadata : Metadata = {
2024-09-07 09:39:26 +02:00
title : "Mods - SVR.JS" ,
2024-09-07 09:12:48 +02:00
description :
2024-11-25 08:42:23 +01:00
"Expand the functionality of SVR.JS with our mods! Visit the downloads page to explore and install a variety of mods for a better web server experience." ,
2024-11-25 07:11:36 +01:00
alternates : { canonical : ` ${ process . env . NEXT_PUBLIC_WEBSITE_URL } /mods ` } ,
2024-09-07 09:12:48 +02:00
openGraph : {
2024-09-07 09:39:26 +02:00
title : "Mods - SVR.JS" ,
2024-09-07 09:12:48 +02:00
description :
2024-11-25 08:42:23 +01:00
"Expand the functionality of SVR.JS with our mods! Visit the downloads page to explore and install a variety of mods for a better web server experience." ,
2024-09-08 13:16:43 +02:00
url : ` ${ process . env . NEXT_PUBLIC_WEBSITE_URL } /mods ` ,
2024-09-07 09:12:48 +02:00
type : "website" ,
images : [
{
2024-09-08 13:16:43 +02:00
url : ` ${ process . env . NEXT_PUBLIC_WEBSITE_URL } /metadata/svrjs-cover.png ` ,
2024-09-07 09:12:48 +02:00
width : 800 ,
height : 600 ,
2024-09-07 09:39:26 +02:00
alt : "Mods - SVR.JS"
2024-09-07 09:12:48 +02:00
}
]
} ,
twitter : {
card : "summary_large_image" ,
site : "@SVR_JS" ,
2024-09-07 09:39:26 +02:00
title : "Mods - SVR.JS" ,
2024-09-07 09:12:48 +02:00
description :
2024-11-25 08:42:23 +01:00
"Expand the functionality of SVR.JS with our mods! Visit the downloads page to explore and install a variety of mods for a better web server experience." ,
2024-09-08 13:16:43 +02:00
images : [ ` ${ process . env . NEXT_PUBLIC_WEBSITE_URL } /metadata/svrjs-cover.png ` ] ,
2024-09-07 09:12:48 +02:00
creator : "@SVR_JS"
}
2024-06-22 10:30:51 +02:00
} ;
const ModLayout = ( { children } : { children : React.ReactNode } ) = > {
2024-09-07 09:12:48 +02:00
return < main > { children } < / main > ;
2024-06-22 10:30:51 +02:00
} ;
export default ModLayout ;