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

38 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-06-22 10:30:51 +02:00
import { Metadata } from "next";
2024-08-01 16:32:57 +02:00
// baseURL [ENV]
2024-06-22 10:30:51 +02:00
export const metadata: Metadata = {
2024-09-07 09:39:26 +02:00
title: "Mods - SVR.JS",
description:
"Expand the functionality of SVR.JS with our collection of mods! Visit the mod downloads page to explore, download, and install a wide range of mods tailored to enhance your web server experience.",
openGraph: {
2024-09-07 09:39:26 +02:00
title: "Mods - SVR.JS",
description:
"Expand the functionality of SVR.JS with our collection of mods! Visit the mod downloads page to explore, download, and install a wide range of mods tailored to enhance your web server experience.",
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/mods`,
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: "Mods - SVR.JS"
}
]
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-09-07 09:39:26 +02:00
title: "Mods - SVR.JS",
description:
"Expand the functionality of SVR.JS with our collection of mods! Visit the mod downloads page to explore, download, and install a wide range of mods tailored to enhance your web server experience.",
images: [`${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`],
creator: "@SVR_JS"
}
2024-06-22 10:30:51 +02:00
};
const ModLayout = ({ children }: { children: React.ReactNode }) => {
return <main>{children}</main>;
2024-06-22 10:30:51 +02:00
};
export default ModLayout;