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

39 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 = {
title: "SVR.JS change log - SVR.JS",
description:
2024-11-25 08:42:23 +01:00
"Stay updated on SVR.JS web server improvements with our change log, featuring new features, bug fixes, and enhancements for each release.",
2024-11-25 07:11:36 +01:00
alternates: { canonical: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/changelog` },
openGraph: {
title: "SVR.JS change log - SVR.JS",
description:
2024-11-25 08:42:23 +01:00
"Stay updated on SVR.JS web server improvements with our change log, featuring new features, bug fixes, and enhancements for each release.",
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/changelog`,
type: "website",
images: [
{
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`,
width: 800,
height: 600,
alt: "SVR.JS change log - SVR.JS"
}
]
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
title: "SVR.JS change log - SVR.JS",
description:
2024-11-25 08:42:23 +01:00
"Stay updated on SVR.JS web server improvements with our change log, featuring new features, bug fixes, and enhancements for each release.",
images: [`${process.env.NEXT_PUBLIC_WEBSITE_URL}/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;