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

38 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-08-01 17:08:03 +02:00
import { Metadata } from "next";
// baseURL [ENV]
export const metadata: Metadata = {
title: "ChangeLogs - SVRJS",
description:
2024-08-02 19:41:45 +02:00
"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.",
2024-08-01 17:08:03 +02:00
openGraph: {
2024-08-02 19:41:45 +02:00
title: "ChangeLogs - SVRJS",
2024-08-01 17:08:03 +02:00
description:
2024-08-02 19:41:45 +02:00
"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",
2024-08-01 17:08:03 +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: "ChangeLogs - SVRJS",
2024-08-01 17:08:03 +02:00
},
],
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-08-02 19:41:45 +02:00
title: "ChangeLogs - SVRJS",
2024-08-01 17:08:03 +02:00
description:
2024-08-02 19:41:45 +02:00
"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.",
2024-08-01 17:08:03 +02:00
images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"],
creator: "@SVR_JS",
},
};
const ContactLayout = ({ children }: { children: React.ReactNode }) => {
return <main>{children}</main>;
};
export default ContactLayout;