1
8 Comments

Create a CSS Framework, What do I need to know?

The Goal is to Create a CSS Framework and sell it on my website,
What do I need to know?

on May 7, 2020
  1. 2

    What is the problem with current frameworks?

    Bootstrap/tailwind?

    1. 1

      Great Question,
      I don't think there is a problem.

      Thank you very much for asking this question because I don't think I would have thought of that!

      Are you saying that there is not need for devs to buy a new CSS Framework because free ones are just as good?

      1. 1

        I'm saying unless you have a crazy USP it will be very hard to sell a CSS framework.

        The business model seems to be give a free css framework and build on top of it https://www.tailwindui.com/ and https://themes.getbootstrap.com/

        1. 1

          Awesome!
          Thanks for your answer and the links!

  2. 1

    Yeah. If you would like to make the developer experience better then I recommend you to build a UI kit and sell it as a npm package (you can use https://privjs.com to provide access only to your customers).

    For example: The developer should be able to use the UI kit like this:
    $ npm i yourawesomeuikit

    import { Nav, Hero, Features, Footer } from 'yourawesomeuikit'
    
    export const App = () => (
    <>
      <Nav logo="WebsiteLogo" />
      <Hero title="Super Webstie" desc="Website descritpion" />
      <Features list={[...arrayoffeatures]} />
      <Footer copy="copyrights" />
    </>
    )
    

    I think this would be a dope way of implementing a UI kit

    1. 1

      Thanks, that's a great idea!
      I never thought of that! :)

  3. 1

    Better idea would be make UI kits from existing free frameworks that already have large community and sell them. The niche is saturated but it does not matter for indie hacker, does it ? :)

    1. 1

      That is an awesome idea,
      Thank you so much!