// next imports import Image from "next/image"; // next imports import Link from "next/link"; const content = [ "Unlimited Issues", "Unlimited Members", "Unlimited Usage (Entries, API calls, Assets, etc.)", "Community support" ]; const Enterprise = () => { return (
Community Edition
Free Forever
Open-Source under Apache 2.0 License
Self-host Plane
{content.map((_: string, index: number) => (
user
{_}
))}
); }; export default Enterprise;