🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

react-saasify

Package Overview
Dependencies
Maintainers
2
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-saasify

React components for Saasify web clients.

Source
npmnpm
Version
1.18.31
Version published
Weekly downloads
204
-60.69%
Maintainers
2
Weekly downloads
 
Created
Source

Saasify Logo

react-saasify

React components for Saasify web clients.

NPM Build Status JavaScript Style Guide

Install

npm install --save react-saasify

Usage

react-saasify exposes lots of useful components that are used across Saasify web clients, but the most important one is the Section component.

Every web client is broken up into Sections that encapsulate a single message, action, or purpose. Example Sections include HeroSection, DocsSection, FeaturesSection, etc.

Here's an example implementation of the HeroSection on Saasify's homepage.

import { CTAButton, Section, theme } from 'react-saasify'

import styles from './styles.module.css'

export class HeroSection extends Component {
  render() {
    return (
      <Section
        id='hero'
        title='Monetize Your OSS Projects'
        subtitle='The platform for monetizable serverless functions that empower the open source authors you love.'
        className={theme(styles, 'hero')}
      >
        <CTAButton>Get started</CTAButton>
      </Section>
    )
  }
}

Components

import {
  AuthenticatedRoute,

  LoginForm,
  SignupForm,
  CheckoutForm,

  NavHeader,
  NavFooter,

  ProfileSection,
  DashboardSection,
  InvoicingSection,
  BillingSourcesSection,
  BillingUsageSection,
  NotFoundSection,
  BlankSection,

  Section,
  SectionDivider,

  CodeBlock,
  LiveServiceDemo,
  PricingPlan,
  CTAButton,

  Markdown,
  UndrawSVG,
  Logo,
  ScrollToTopOnMount,
  Paper,
  Loading
} from 'react-saasify'

Themes

react-saasify provides support for dynamically changing the theme. Note that themes can only apply custom styles They aren't currently capable of modifying content aside from loading additional fonts.

See the list of themes in src/themes/ for examples.

  • saasify - Saasify is the easiest way to monetize your OSS projects!

License

MIT © Saasify

Keywords

faas

FAQs

Package last updated on 28 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts