2024-06-24 10:02:18 +02:00
import { Metadata } from "next" ;
2024-08-01 16:32:57 +02:00
// baseURL [ENV]
2024-06-24 10:02:18 +02:00
export const metadata : Metadata = {
2024-09-07 09:39:26 +02:00
title : "Downloads - SVR.JS" ,
2024-09-07 09:12:48 +02:00
description :
"Ready to get started with SVR.JS? Visit our downloads page to access the latest stable releases, nightly builds, and archived versions. Find the right fit for your needs today!" ,
openGraph : {
2024-09-07 09:39:26 +02:00
title : "Downloads - SVR.JS" ,
2024-09-07 09:12:48 +02:00
description :
"Ready to get started with SVR.JS? Visit our downloads page to access the latest stable releases, nightly builds, and archived versions. Find the right fit for your needs today!" ,
2024-09-08 13:16:43 +02:00
url : ` ${ process . env . NEXT_PUBLIC_WEBSITE_URL } /downloads ` ,
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 : "Downloads - 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 : "Downloads - SVR.JS" ,
2024-09-07 09:12:48 +02:00
description :
" Ready to get started with SVR . JS ? Visit our downloads page to access the latest stable releases , nightly builds , and archived versions . Find the right fit for your needs today ! " ,
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-24 10:02:18 +02:00
} ;
export default function DownloadLayout ( {
2024-09-07 09:12:48 +02:00
children
2024-06-24 10:02:18 +02:00
} : {
2024-09-07 09:12:48 +02:00
children : React.ReactNode ;
2024-06-24 10:02:18 +02:00
} ) {
2024-09-07 09:12:48 +02:00
return < main > { children } < / main > ;
2024-06-24 10:02:18 +02:00
}