37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { Metadata } from "next";
|
|
|
|
// baseURL [ENV]
|
|
export const metadata: Metadata = {
|
|
title: "Vulnerabilities - SVRJS",
|
|
description:
|
|
"Learn about potential security risks associated with outdated SVR.JS web server versions. Stay informed and safeguard your web applications from potential threats with timely updates.",
|
|
openGraph: {
|
|
title: "Vulnerabilities - SVRJS",
|
|
description:
|
|
"Learn about potential security risks associated with outdated SVR.JS web server versions. Stay informed and safeguard your web applications from potential threats with timely updates.",
|
|
url: "https://svrjs.org/vulnerabilities",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "https://svrjs.vercel.app/metadata/svrjs-cover.png",
|
|
width: 800,
|
|
height: 600,
|
|
alt: "Vulnerabilities - SVRJS",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
site: "@SVR_JS",
|
|
title: "Vulnerabilities - SVRJS",
|
|
description:
|
|
"Learn about potential security risks associated with outdated SVR.JS web server versions. Stay informed and safeguard your web applications from potential threats with timely updates.",
|
|
images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"],
|
|
creator: "@SVR_JS",
|
|
},
|
|
};
|
|
const ModLayout = ({ children }: { children: React.ReactNode }) => {
|
|
return <main>{children}</main>;
|
|
};
|
|
|
|
export default ModLayout;
|