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

38 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-08-01 17:08:03 +02:00
import { Metadata } from "next";
// baseURL [ENV]
export const metadata: Metadata = {
2024-09-07 09:39:26 +02:00
title: "ChangeLogs - SVR.JS",
description:
"Stay up-to-date with the latest improvements and updates to SVR.JS web server. Our change log page provides a comprehensive list of new features, bug fixes, and enhancements for each release.",
openGraph: {
2024-09-07 09:39:26 +02:00
title: "ChangeLogs - SVR.JS",
description:
"Stay up-to-date with the latest improvements and updates to SVR.JS web server. Our change log page provides a comprehensive list of new features, bug fixes, and enhancements for each release.",
url: "https://svrjs.org/changelogs",
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: "ChangeLogs - SVR.JS"
}
]
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-09-07 09:39:26 +02:00
title: "ChangeLogs - SVR.JS",
description:
"Stay up-to-date with the latest improvements and updates to SVR.JS web server. Our change log page provides a comprehensive list of new features, bug fixes, and enhancements for each release.",
images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"],
creator: "@SVR_JS"
}
2024-08-01 17:08:03 +02:00
};
const ContactLayout = ({ children }: { children: React.ReactNode }) => {
return <main>{children}</main>;
2024-08-01 17:08:03 +02:00
};
export default ContactLayout;