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

41 lines
1.2 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 = {
title: "Downloads - SVRJS",
2024-08-01 16:32:57 +02:00
description:
2024-08-02 19:41:45 +02:00
"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-08-01 16:32:57 +02:00
openGraph: {
2024-08-02 19:41:45 +02:00
title: "Downloads - SVRJS",
2024-08-01 16:32:57 +02:00
description:
2024-08-02 19:41:45 +02:00
"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",
2024-08-01 16:32:57 +02:00
type: "website",
images: [
{
url: "https://svrjs.vercel.app/metadata/svrjs-cover.png",
width: 800,
height: 600,
2024-08-02 19:41:45 +02:00
alt: "Downloads - SVRJS",
2024-08-01 16:32:57 +02:00
},
],
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-08-02 19:41:45 +02:00
title: "Downloads - SVRJS",
2024-08-01 16:32:57 +02:00
description:
2024-08-02 19:41:45 +02:00
"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-08-01 16:32:57 +02:00
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,
}: {
children: React.ReactNode;
}) {
return <main>{children}</main>;
}