import React from "react"; // next imports import Image from "next/image"; import Link from "next/link"; const OpenSource = () => { const data = [ { title: "17k+", description: "Stars" }, { title: "20k+", description: "PRs closed" }, { title: "300+", description: "Contributors" } ]; return (
img
We are open-source
Host it on your own servers, and easily extend Plane with custom integrations. Choose from a rich set of developer APIs and never be limited by platform features.
Star us on GitHub {/*
{data.map((item: any, index: number) => (
{item.title}
{item.description}
))}
*/}
); }; export default OpenSource;