// next imports import Image from "next/image"; const Values = () => { const valueData = [ { title: "Accessibility", description: "We believe powerful tools for planning and tracking work should be accessible to teams of all sizes and budgets." }, { title: "Openness", description: "As an open-source project, we are committed to transparency and collaboration and making our code available for anyone to use and contribute to." }, { title: "Flexibility", description: "Every team is unique, so we aim to provide a tool that can be customized and tailored to the specific needs of each team." }, { title: "Collaboration", description: "We believe that collaboration is key to success, so we aim to provide features that make it easy for teams to communicate and work together." }, { title: "User friendliness", description: "As an open-source project, we are committed to transparency and collaboration and making our code available for anyone to use and contribute to." }, { title: "Continual improvement", description: "We are committed to constantly improving Plane, based on feedback from our users and the broader community." } ]; return (
Our Values
{valueData.map((data: any, index: number) => (
{data.title}
{data.description}
))}
); }; export default Values;