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

41 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:
2024-11-25 08:42:23 +01:00
"Discover security risks of outdated SVR.JS versions. Stay informed and protect your web applications with timely updates against potential threats.",
2024-11-25 07:11:36 +01:00
alternates: {
canonical: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/vulnerabilities`
},
openGraph: {
2024-09-07 09:39:26 +02:00
title: "Vulnerabilities - SVR.JS",
description:
2024-11-25 08:42:23 +01:00
"Discover security risks of outdated SVR.JS versions. Stay informed and protect your web applications with timely updates against potential threats.",
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/vulnerabilities`,
type: "website",
images: [
{
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/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:
2024-11-25 08:42:23 +01:00
"Discover security risks of outdated SVR.JS versions. Stay informed and protect your web applications with timely updates against potential threats.",
images: [`${process.env.NEXT_PUBLIC_WEBSITE_URL}/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;