import ReactMarkdown from "react-markdown"; import { contribute } from "@/constants/guidelines"; export const metadata = { title: "Contribute - MERNMail", description: "Contribute to MERNMail and be part of an exciting open-source project. Follow the guidelines to contribute to our code.", openGraph: { title: "Contribute - MERNMail", description: "Contribute to MERNMail and be part of an exciting open-source project. Follow the guidelines to contribute to our code.", url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/contribute`, type: "website", images: [ { url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/mernmail-cover.png`, width: 2560, height: 1440, alt: "Contribute - MERNMail" } ] }, twitter: { card: "summary_large_image", site: "@MERNMail", title: "Contribute - MERNMail", description: "Contribute to MERNMail and be part of an exciting open-source project. Follow the guidelines to contribute to our code.", images: [ `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/mernmail-cover.png` ], creator: "@MERNMail" } }; function Contribute() { return (

Contributing to MERNMail

We welcome contributions from the community! Here's how you can help!

{contribute}
); } export default Contribute;