Building a Color Pallet Manager using NextJS + Tailwind CSS + Supabase.io - Part-1

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • color-pallet-manager

    A simple color Pallet manager project created with NextJS, Tailwind CSS and supabase.io

  • // src/components/Header/HeaderButtons.js import { Fragment, useState } from 'react'; import PropTypes from 'prop-types'; import LoginForm from 'components/Auth/LoginForm'; import { useAuth } from 'hooks'; import Link from 'next/link'; const HeaderButtons = () => { const [showLogin, setShowLogin] = useState(false); const { session, logout } = useAuth(); const isLoggedIn = session?.user?.id || false; const toggleLogin = () => setShowLogin(!showLogin); return (

    {isLoggedIn ? ( My Projects Logout ) : ( Login )} {showLogin && (
    )} Github
    ); }; HeaderButtons.defaultProps = { onSave: () => {}, }; HeaderButtons.propTypes = { onSave: PropTypes.func, }; export default HeaderButtons;

  • Tailwind CSS

    A utility-first CSS framework for rapid UI development.

  • A Simple color pallet manager web project with help of NextJS and Tailwind CSS and Supabase.io as our Backend service for data store.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • supabase

    The open source Firebase alternative.

  • A Simple color pallet manager web project with help of NextJS and Tailwind CSS and Supabase.io as our Backend service for data store.

  • Next.js

    The React Framework

  • A Simple color pallet manager web project with help of NextJS and Tailwind CSS and Supabase.io as our Backend service for data store.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Introducing My New Blogfolio

    3 projects | dev.to | 13 Dec 2021
  • How to Create Your Own Mailchimp Service?

    4 projects | dev.to | 1 Mar 2021
  • Qanday qilib Mailchimp xizmatini yaratish mumkin?

    5 projects | dev.to | 15 Feb 2021
  • Is Traversy Media a good learning platform?

    1 project | /r/webdev | 1 May 2023
  • I built an open-source project, FrontendPro, using NextJs and TailwindCSS

    1 project | /r/SideProject | 1 Apr 2023