import ReactMarkdown from "react-markdown"; import { contribute } from "@/constants/guidelines"; import { Metadata } from "next"; // baseURL [ENV] export const metadata: Metadata = { title: "Contribute - SVRJS", description: "Contribute to SVR.JS and be part of an exciting open-source project. Follow the step-by-step guidelines to make your code contributions.", openGraph: { title: "Contribute - SVRJS", description: "Contribute to SVR.JS and be part of an exciting open-source project. Follow the step-by-step guidelines to make your code contributions.", url: "https://svrjs.org/contribute", type: "website", images: [ { url: "https://svrjs.vercel.app/metadata/svrjs-cover.png", width: 800, height: 600, alt: "Contribute - SVRJS" } ] }, twitter: { card: "summary_large_image", site: "@SVR_JS", title: "Contribute - SVRJS", description: "Contribute to SVR.JS and be part of an exciting open-source project. Follow the step-by-step guidelines to make your code contributions.", images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"], creator: "@SVR_JS" } }; const Contribute = () => { return (

Contributing to SVR.JS

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

{contribute}
); }; export default Contribute;