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

41 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:
"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",
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!",
url: "https://svrjs.org/downloads",
type: "website",
images: [
{
url: "https://svrjs.vercel.app/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:
"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!",
images: ["https://svrjs.vercel.app/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
}