import React from "react"; // next imports import Image from "next/image"; const features = [ { title: "Plan", description: "Simple yet powerful planning features make it easy to create and prioritize issues, define milestones and deadlines, and assign tasks to team members.", cards: [ { title: (
Create Issues in seconds
), description: "Create issues, sub-issues with context and detail in seconds. No distraction, no falling through cracks.", image: "/images/plan1.png" }, { title: (
View it as you like
), description: "Kanban, or Lists, we’ve got you covered with the Views you want. Please, filters as you like.", image: "/images/plan2.png" }, { title: (
Match with your Speed
), description: "Speed up your work with number of Shortcuts, and increase your productivity by 3.3%.", image: "/images/plan3.png" } ] }, { title: "Progress", description: "Create and assign tasks within cycles, track their progress over time, keep your team organized, and ensures that important tasks are completed on time.", cards: [ { title: (
Plan better with Cycles
), description: "Sprint better with Cycles by setting fixed time within projects and delivering faster with precision.", image: "/images/progress1.png" }, { title: (
Move faster with Bulk ops
), description: "Organise and move issues better within projects and cycles, with bulk operations and powerful search.", image: "/images/progress2.png" }, { title: (
Track and take control
), description: "Track Cycles with Simple stats for your team that’ll help you push and clear your backlogs.", image: "" } ] }, { title: "Collaboration", description: "With its integration capabilities, Plane helps teams stay connected and aligned across different tools and platforms, ensuring that everyone is working towards the same goals.", cards: [ { title: (
When in doubt, Comment it out
), description: "Collaborate and discuss the details of a specific issue within the project using Comments and Activity.", image: "/images/colab1.png" }, { title: (
Get Notified on your Slack
), description: "Never miss anything, integrate with your Slack workspace to get notification in real-time.", image: "", coming_soon: true }, { title: (
Work in Real-time
), description: "[Coming soon] See updates in real-time within your teams across different tabs devices.", image: "/images/colab3.png", coming_soon: true } ] } ]; const PrimaryFeatures = () => { return (
{features.map((feature: any, index: number) => (
0{index + 1}
{feature.title}
{feature.description}
{feature.cards.map((card: any, index: number) => (
{card.coming_soon && ( <>
{" "} coming soon
)}
{card.title}
{card.description}
))}
))}
); }; export default PrimaryFeatures;