svrjs-nextjs-website/app/(root)/downloads/layout.tsx

42 lines
1.3 KiB
TypeScript
Raw Normal View History

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",
description:
2024-11-25 08:42:23 +01:00
"Get started with SVR.JS! Visit our downloads page for the latest stable releases, nightly builds, and archived versions to find your perfect fit!",
2024-11-25 07:11:36 +01:00
alternates: { canonical: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/downloads` },
openGraph: {
2024-09-07 09:39:26 +02:00
title: "Downloads - SVR.JS",
description:
2024-11-25 08:42:23 +01:00
"Get started with SVR.JS! Visit our downloads page for the latest stable releases, nightly builds, and archived versions to find your perfect fit!",
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/downloads`,
type: "website",
images: [
{
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`,
width: 800,
height: 600,
2024-09-07 09:39:26 +02:00
alt: "Downloads - SVR.JS"
}
]
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-09-07 09:39:26 +02:00
title: "Downloads - SVR.JS",
description:
2024-11-25 08:42:23 +01:00
"Get started with SVR.JS! Visit our downloads page for the latest stable releases, nightly builds, and archived versions to find your perfect fit!",
images: [`${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`],
creator: "@SVR_JS"
}
2024-06-24 10:02:18 +02:00
};
export default function DownloadLayout({
children
2024-06-24 10:02:18 +02:00
}: {
children: React.ReactNode;
2024-06-24 10:02:18 +02:00
}) {
return <main>{children}</main>;
2024-06-24 10:02:18 +02:00
}