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

38 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-08-02 19:41:45 +02:00
import { Metadata } from "next";
// baseURL [ENV]
export const metadata: Metadata = {
2024-09-07 09:39:26 +02:00
title: "Vulnerabilities - SVR.JS",
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: {
2024-09-07 09:39:26 +02:00
title: "Vulnerabilities - SVR.JS",
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,
2024-09-07 09:39:26 +02:00
alt: "Vulnerabilities - SVR.JS"
}
]
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-09-07 09:39:26 +02:00
title: "Vulnerabilities - SVR.JS",
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"
}
2024-08-02 19:41:45 +02:00
};
const ModLayout = ({ children }: { children: React.ReactNode }) => {
return <main>{children}</main>;
2024-08-02 19:41:45 +02:00
};
export default ModLayout;