diff --git a/src/components/Footer/index.js b/src/components/Footer/index.js index 950daab..4d332b7 100644 --- a/src/components/Footer/index.js +++ b/src/components/Footer/index.js @@ -54,14 +54,11 @@ const Footer = () => {
  • - - Roadmap - + + + Blog + +
  • { Roadmap + + Pricing + diff --git a/src/pages/pricing.js b/src/pages/pricing.js new file mode 100644 index 0000000..51695ba --- /dev/null +++ b/src/pages/pricing.js @@ -0,0 +1,103 @@ +import Head from 'next/head'; +import Navbar from 'components/Navbar'; +import Footer from 'components/Footer'; +import GlobalStyle from '../globalStyles'; + +const CheckIcon = () => { + return ; +}; + +export default function Pricing() { + + const opensourceEdition = [ + 'REST and GQL Apis', + 'Scripting', + 'Authentication', + 'Environments', + 'Secret Management', + 'Asserts and Tests', + 'Client Certificates', + 'Collection Runner', + 'Cookie Management', + 'Proxies', + 'Code Generation', + 'Documentation', + 'Custom Themes', + 'Bru CLI', + 'OpenAPI Import' + ]; + + const goldenEditon = [ + 'Inbuilt Bru File Explorer', + 'Visual Git (Like Gitlens for Vscode)', + 'Inbuilt Terminal', + 'GRPC, Websocket, SocketIO, MQTT', + 'Load Data from File for Collection Run', + 'Performance/Load Testing', + ]; + + return ( +
    + + Manifesto + + + + +
    + + +
    +
    +
    +

    Pricing

    +

    + Majority of our features are free and open source.
    + We strive to strike a harmonious balance between open-source principles and sustainability. +

    +
    +
    + +
    +

    Golden Edition

    +
    + $12 + /year +
    +
      + {goldenEditon.map((item) => ( +
    • + + {item} +
    • + ))} +
    + Coming Soon +
    +
    + +

    + * All open-source contributors of Bruno will receive a free license for the Golden Edition. +

    +
    +
    +
    + +
    + ); +};