2024-08-01 16:32:57 +02:00
|
|
|
import { Metadata } from "next";
|
|
|
|
|
|
|
|
// baseURL [ENV]
|
|
|
|
export const metadata: Metadata = {
|
2024-09-07 09:39:26 +02:00
|
|
|
title: "Contact Us - SVR.JS",
|
2024-09-07 09:12:48 +02:00
|
|
|
description:
|
2024-11-25 08:42:23 +01:00
|
|
|
"Questions about SVR.JS? Visit our Contact Us page for email, forums, and support channel options to reach our team.",
|
2024-11-25 07:11:36 +01:00
|
|
|
alternates: { canonical: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/contact` },
|
2024-09-07 09:12:48 +02:00
|
|
|
openGraph: {
|
2024-09-07 09:39:26 +02:00
|
|
|
title: "Contact Us - SVR.JS",
|
2024-09-07 09:12:48 +02:00
|
|
|
description:
|
2024-11-25 08:42:23 +01:00
|
|
|
"Questions about SVR.JS? Visit our Contact Us page for email, forums, and support channel options to reach our team.",
|
2024-09-08 13:16:43 +02:00
|
|
|
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/contact`,
|
2024-09-07 09:12:48 +02:00
|
|
|
type: "website",
|
|
|
|
images: [
|
|
|
|
{
|
2024-09-08 13:16:43 +02:00
|
|
|
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`,
|
2024-09-07 09:12:48 +02:00
|
|
|
width: 800,
|
|
|
|
height: 600,
|
2024-09-07 09:39:26 +02:00
|
|
|
alt: "Contact Us - SVR.JS"
|
2024-09-07 09:12:48 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
twitter: {
|
|
|
|
card: "summary_large_image",
|
|
|
|
site: "@SVR_JS",
|
2024-09-07 09:39:26 +02:00
|
|
|
title: "Contact Us - SVR.JS",
|
2024-09-07 09:12:48 +02:00
|
|
|
description:
|
2024-11-25 08:42:23 +01:00
|
|
|
"Questions about SVR.JS? Visit our Contact Us page for email, forums, and support channel options to reach our team.",
|
2024-09-08 13:16:43 +02:00
|
|
|
images: [`${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`],
|
2024-09-07 09:12:48 +02:00
|
|
|
creator: "@SVR_JS"
|
|
|
|
}
|
2024-08-01 16:32:57 +02:00
|
|
|
};
|
|
|
|
const ContactLayout = ({ children }: { children: React.ReactNode }) => {
|
2024-09-07 09:12:48 +02:00
|
|
|
return <main>{children}</main>;
|
2024-08-01 16:32:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ContactLayout;
|