🚀 A Tailwindcss component library.

Overview

💚 Supabase Launch Week 5 Hackathon:

💖 Contributors:

✌️ Socials
Pablo Hdez GitHub - Twitter
Nacho Aldama GitHub - Twitter
David Huertas GitHub - Twitter
Juan Rojas GitHub - Twitter

📹 Video:

📦 Packages:

  • 🚀 Turborepo - The High-performance Build System for JavaScript & TypeScript Codebases.
  • ⚡️ Nextjs - The React Framework for Production.
  • ⚒️ React 18 - A JavaScript library for building user interfaces.
  • 💙 Typescript - A superset of JavaScript.
  • 💚 Supabase - Build in a weekend. Scale to millions.
  • 💅 Chakra UI for docs - Create accessible React apps with speed.
  • 💨 TailwindCSS for library - Rapidly build modern websites without ever leaving your HTML.
  • 💖 React-Icons - A flexible icon family for everyone.
  • CodeSandbox Sandpack - A component toolkit for creating live-running code editing experiences, using the power of CodeSandbox.

🚀 Getting Started:

  1. Clone the repository:
git clone https://github.com/pheralb/superui.git
  1. Install dependencies:
cd superui
npm install
  1. Create a Supabase database with the following query:
create table components (
  id bigint generated by default as identity primary key,
  user_id uuid references auth.users not null,
  title text check (char_length(title) > 3),
  description text,
  code text,
  inserted_at timestamp with time zone default timezone('utc'::text, now()) not null
);
  1. Copy Supabase URL & Anon api key from your database and create a .env file in the /app folder with the following content:
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
  1. Run the following command to start the development server:
npm run dev

And ready 🥳 , go to localhost:3001.

🔑 License:

Comments
  • Fix navbar responsive

    Fix navbar responsive

    Context Navbar component doesn't see correctly in mobile resolution

    Solution Change base max width to 100%

    More info: Chakra Responsive examples

    Demo:

    BEFORE old_navbar

    AFTER Screen Recording 2022-08-28 at 17 52 00

    opened by jelowin 2
  • Fix Docs page responsive on mobile

    Fix Docs page responsive on mobile

    Context Docs page did not make the responsive correctly.

    Solution Add minChildWith prop used on Chakra SimpleGrid component to make the grid responsive and adjust automatically without passing columns

    More info: https://chakra-ui.com/docs/components/simple-grid/usage#auto-responsive-grid

    Demo

    Screen Recording 2022-08-28 at 00 10 51

    opened by jelowin 2
  • Contribution: Fix basic instalation link

    Contribution: Fix basic instalation link

    Buenos días, he estado viendo el proyecto y he de reconocer que me ha gustado y por ello quiero contribuir y ser parte de él, arreglando almenos el código.

    En esta PR corrijo el link de instalación básico.

    Esto es lo que pone en las instrucciones:

    git clone [email protected]:pheralb/superui.git

    y es mas que obio que desde Bash te pida la key.

    
    $ git clone [email protected]:pheralb/superui.git
    Cloning into 'superui'...
    The authenticity of host 'github.com (140.82.121.3)' can't be established.
    ED***19 key fingerprint is SHA256:+**************zLDA****************.
    This key is not known by any other names
    Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
    Warning: Permanently added 'github.com' (ED***19) to the list of known hosts.
    [email protected]: Permission denied (publickey).
    fatal: Could not read from remote repository.
    
    Please make sure you have the correct access rights
    and the repository exists.
    

    El problema es que sino corregimos esto, habrá mucha gente que estará peridiendo la oporunidad de probarlo y por lo tanto ni forkear ni favoritos.

    Solución que se propone:

    git clone https://github.com/pheralb/superui.git

    Es de esta forma bajo el protocolo https, y el link, se clona sin ningún problema, este maravilloso proyecto.

    $ git clone https://github.com/pheralb/superui.git
    Cloning into 'superui'...
    remote: Enumerating objects: 2357, done.
    remote: Counting objects: 100% (401/401), done.
    remote: Compressing objects: 100% (203/203), done.
    remote: Total 2357 (delta 280), reused 243 (delta 195), pack-reused 1956
    Receiving objects: 100% (2357/2357), 1.14 MiB | 9.13 MiB/s, done.
    Resolving deltas: 100% (1388/1388), done.
    

    Os dejo el log file, para que así pues tengáis estadísticas de mejora de rapidez en un futuro, W11, MSI GE67 con Andorra conexion remota a PC de Barcelona, Download Mbps 923.58 Upload Mbps 858.56.

    Buenas noches. Miguel

    good first issue 
    opened by miguelgargallo 2
  • How does

    How does "My components" works?

    Been checking around the library and it's great, but I don't get how "my components" section works, it has to be accepted to get into the official component list?

    opened by stylessh 2
  • Docs

    Docs

    • [x] Progress @Davidr2998
    • [ ] Overlay @ikurotime
    • [ ] Modal @ikurotime
    • [x] Command Menu @nachoaldamav
    • [ ] Toast @ikurotime

    How to make a doc:

    1. Create MDX file in /app/docs
    2. Start adding meta information, check another file for reference
    3. The first line should be the module import
    4. Add examples
    5. To import examples, create a component in /app/src/demo/{component}
    6. Add that component to /app/component/mdx/index.tsx
    7. Use the Element in the MDX file, you can find references in another files.
    opened by nachoaldamav 0
Releases(v0.0.8)
  • v0.0.8(Aug 22, 2022)

    What's Changed

    • add(progress): added progress component to the documentation by @Davidr2998 in https://github.com/pheralb/superui/pull/129
    • chore 🔧: Match UI and base package versions by @nachoaldamav in https://github.com/pheralb/superui/pull/130
    • feat✨: (app) Add progress component docs by @nachoaldamav in https://github.com/pheralb/superui/pull/131

    Full Changelog: https://github.com/pheralb/superui/compare/v0.0.5...v0.0.8

    Source code(tar.gz)
    Source code(zip)
  • v0.0.7(Aug 22, 2022)

    What's Changed

    • add(progress): added progress component to the documentation by @Davidr2998 in https://github.com/pheralb/superui/pull/129
    • chore 🔧: Match UI and base package versions by @nachoaldamav in https://github.com/pheralb/superui/pull/130
    • feat✨: (app) Add progress component docs by @nachoaldamav in https://github.com/pheralb/superui/pull/131

    Full Changelog: https://github.com/pheralb/superui/compare/v0.0.5...v0.0.7

    Source code(tar.gz)
    Source code(zip)
  • v0.0.2(Aug 22, 2022)

    What's Changed

    • ⚡️ Add CTA, sections & Footer by @ikurotime in https://github.com/pheralb/superui/pull/60
    • Ikurotime by @ikurotime in https://github.com/pheralb/superui/pull/61
    • fix 🐛: (ui) Fix styles CSS route by @nachoaldamav in https://github.com/pheralb/superui/pull/62
    • fix 🐛: (ui) Fix CMDK styles path by @nachoaldamav in https://github.com/pheralb/superui/pull/63
    • refactor 🔨: (ui) Add code splitting by @nachoaldamav in https://github.com/pheralb/superui/pull/64
    • Ikurotime by @ikurotime in https://github.com/pheralb/superui/pull/65
    • 🔨Fix(module typo)️ by @ikurotime in https://github.com/pheralb/superui/pull/66
    • chore 🔧: (ui) Improve build options by @nachoaldamav in https://github.com/pheralb/superui/pull/67
    • feat ✨: (ui) Auto-import React in components by @nachoaldamav in https://github.com/pheralb/superui/pull/68
    • 🔧 Change(Chakra UI to TailwindCSS)️ by @ikurotime in https://github.com/pheralb/superui/pull/69
    • feat ✨: (ui) Some UI improvements by @nachoaldamav in https://github.com/pheralb/superui/pull/70
    • chore 🔧: (ui) Remove unused dependencies by @nachoaldamav in https://github.com/pheralb/superui/pull/71
    • feat ✨: (app) Fix code block styling by @nachoaldamav in https://github.com/pheralb/superui/pull/73
    • refactor 🔨: (app) Remove something that shouldn't be there... by @nachoaldamav in https://github.com/pheralb/superui/pull/74
    • 🚀 Design improvements + fix header. by @pheralb in https://github.com/pheralb/superui/pull/75
    • Ikurotime by @ikurotime in https://github.com/pheralb/superui/pull/76
    • 🔨Fix(Landing Styles)️ by @ikurotime in https://github.com/pheralb/superui/pull/77
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/78
    • wip(circularProgress): working on circular progress by @Davidr2998 in https://github.com/pheralb/superui/pull/72
    • add(circularProgress): Circular progress has joined the party by @Davidr2998 in https://github.com/pheralb/superui/pull/79
    • fix(pincode): Pincode was not focusing the last element on paste by @Davidr2998 in https://github.com/pheralb/superui/pull/80
    • feat ✨: (app) Add more buttons to docs by @nachoaldamav in https://github.com/pheralb/superui/pull/81
    • ⚡Add(Toast position and variants)️ by @ikurotime in https://github.com/pheralb/superui/pull/83
    • feat ✨: (ui) Add custom items and groups to CMDK by @nachoaldamav in https://github.com/pheralb/superui/pull/84
    • fix(toast): Correcting a typo in the toast description by @Davidr2998 in https://github.com/pheralb/superui/pull/85
    • feat ✨: (app) Add components to sidebar and CMDK by @nachoaldamav in https://github.com/pheralb/superui/pull/86
    • docs 📝: (app) Docs improvements by @nachoaldamav in https://github.com/pheralb/superui/pull/87
    • ⚒️ Add supabase auth + config + command component. by @pheralb in https://github.com/pheralb/superui/pull/89
    • feat ✨: (app) Initial commit for labs by @nachoaldamav in https://github.com/pheralb/superui/pull/90
    • fix 🐛: (app) Fix labs Sandpack integration by @nachoaldamav in https://github.com/pheralb/superui/pull/91
    • feat ✨: (app) Add Monaco editor to Labs by @nachoaldamav in https://github.com/pheralb/superui/pull/92
    • Many changes by @nachoaldamav in https://github.com/pheralb/superui/pull/93
    • Merge Dev to Main by @nachoaldamav in https://github.com/pheralb/superui/pull/94
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/95
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/96
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/97
    • ⚒️ Add readme & license. by @pheralb in https://github.com/pheralb/superui/pull/98
    • ⚒️ Add /labs/create + protected route & fix logout + improve header & sidebar design. by @pheralb in https://github.com/pheralb/superui/pull/100
    • fix: fixed geting started documentation by @Davidr2998 in https://github.com/pheralb/superui/pull/101
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/102
    • style 💅: (app) Fix docs styles by @nachoaldamav in https://github.com/pheralb/superui/pull/103
    • style 💅: (app) Fix dark mode by @nachoaldamav in https://github.com/pheralb/superui/pull/104
    • style 💅: (app) Fix responsive styles in docs by @nachoaldamav in https://github.com/pheralb/superui/pull/105
    • ⚒️ Fix button & getting started docs + mdx improvements + new dark bg color & delete /about link. by @pheralb in https://github.com/pheralb/superui/pull/106
    • docs 📝: (app) Docs changes by @nachoaldamav in https://github.com/pheralb/superui/pull/107
    • ⚒️ Add /docs page + fix sidebar links + 404 page. by @pheralb in https://github.com/pheralb/superui/pull/108
    • add(SEO): added SEO tags implementation by @Davidr2998 in https://github.com/pheralb/superui/pull/109
    • ⚒️ Add new landing page + fix footer. by @pheralb in https://github.com/pheralb/superui/pull/111
    • ⚒️ Fix /landing folder. by @pheralb in https://github.com/pheralb/superui/pull/113
    • docs 📝: (app) Add more docs by @nachoaldamav in https://github.com/pheralb/superui/pull/114
    • fix 🐛: (app) Add styles to CMDK docs by @nachoaldamav in https://github.com/pheralb/superui/pull/115
    • ⚒️ Fix next-seo config & /docs title. by @pheralb in https://github.com/pheralb/superui/pull/116
    • 🐛 Fix next-seo config. by @pheralb in https://github.com/pheralb/superui/pull/117
    • docs 📝: (app) Add toast page by @nachoaldamav in https://github.com/pheralb/superui/pull/118

    Full Changelog: https://github.com/pheralb/superui/compare/v0.0.1...v0.0.2

    Source code(tar.gz)
    Source code(zip)
  • v0.0.5(Aug 21, 2022)

    What's Changed

    • ⚡️ Add CTA, sections & Footer by @ikurotime in https://github.com/pheralb/superui/pull/60
    • Ikurotime by @ikurotime in https://github.com/pheralb/superui/pull/61
    • fix 🐛: (ui) Fix styles CSS route by @nachoaldamav in https://github.com/pheralb/superui/pull/62
    • fix 🐛: (ui) Fix CMDK styles path by @nachoaldamav in https://github.com/pheralb/superui/pull/63
    • refactor 🔨: (ui) Add code splitting by @nachoaldamav in https://github.com/pheralb/superui/pull/64
    • Ikurotime by @ikurotime in https://github.com/pheralb/superui/pull/65
    • 🔨Fix(module typo)️ by @ikurotime in https://github.com/pheralb/superui/pull/66
    • chore 🔧: (ui) Improve build options by @nachoaldamav in https://github.com/pheralb/superui/pull/67
    • feat ✨: (ui) Auto-import React in components by @nachoaldamav in https://github.com/pheralb/superui/pull/68
    • 🔧 Change(Chakra UI to TailwindCSS)️ by @ikurotime in https://github.com/pheralb/superui/pull/69
    • feat ✨: (ui) Some UI improvements by @nachoaldamav in https://github.com/pheralb/superui/pull/70
    • chore 🔧: (ui) Remove unused dependencies by @nachoaldamav in https://github.com/pheralb/superui/pull/71
    • feat ✨: (app) Fix code block styling by @nachoaldamav in https://github.com/pheralb/superui/pull/73
    • refactor 🔨: (app) Remove something that shouldn't be there... by @nachoaldamav in https://github.com/pheralb/superui/pull/74
    • 🚀 Design improvements + fix header. by @pheralb in https://github.com/pheralb/superui/pull/75
    • Ikurotime by @ikurotime in https://github.com/pheralb/superui/pull/76
    • 🔨Fix(Landing Styles)️ by @ikurotime in https://github.com/pheralb/superui/pull/77
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/78
    • wip(circularProgress): working on circular progress by @Davidr2998 in https://github.com/pheralb/superui/pull/72
    • add(circularProgress): Circular progress has joined the party by @Davidr2998 in https://github.com/pheralb/superui/pull/79
    • fix(pincode): Pincode was not focusing the last element on paste by @Davidr2998 in https://github.com/pheralb/superui/pull/80
    • feat ✨: (app) Add more buttons to docs by @nachoaldamav in https://github.com/pheralb/superui/pull/81
    • ⚡Add(Toast position and variants)️ by @ikurotime in https://github.com/pheralb/superui/pull/83
    • feat ✨: (ui) Add custom items and groups to CMDK by @nachoaldamav in https://github.com/pheralb/superui/pull/84
    • fix(toast): Correcting a typo in the toast description by @Davidr2998 in https://github.com/pheralb/superui/pull/85
    • feat ✨: (app) Add components to sidebar and CMDK by @nachoaldamav in https://github.com/pheralb/superui/pull/86
    • docs 📝: (app) Docs improvements by @nachoaldamav in https://github.com/pheralb/superui/pull/87
    • ⚒️ Add supabase auth + config + command component. by @pheralb in https://github.com/pheralb/superui/pull/89
    • feat ✨: (app) Initial commit for labs by @nachoaldamav in https://github.com/pheralb/superui/pull/90
    • fix 🐛: (app) Fix labs Sandpack integration by @nachoaldamav in https://github.com/pheralb/superui/pull/91
    • feat ✨: (app) Add Monaco editor to Labs by @nachoaldamav in https://github.com/pheralb/superui/pull/92
    • Many changes by @nachoaldamav in https://github.com/pheralb/superui/pull/93
    • Merge Dev to Main by @nachoaldamav in https://github.com/pheralb/superui/pull/94
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/95
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/96
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/97
    • ⚒️ Add readme & license. by @pheralb in https://github.com/pheralb/superui/pull/98
    • ⚒️ Add /labs/create + protected route & fix logout + improve header & sidebar design. by @pheralb in https://github.com/pheralb/superui/pull/100
    • fix: fixed geting started documentation by @Davidr2998 in https://github.com/pheralb/superui/pull/101
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/102
    • style 💅: (app) Fix docs styles by @nachoaldamav in https://github.com/pheralb/superui/pull/103
    • style 💅: (app) Fix dark mode by @nachoaldamav in https://github.com/pheralb/superui/pull/104
    • style 💅: (app) Fix responsive styles in docs by @nachoaldamav in https://github.com/pheralb/superui/pull/105
    • ⚒️ Fix button & getting started docs + mdx improvements + new dark bg color & delete /about link. by @pheralb in https://github.com/pheralb/superui/pull/106
    • docs 📝: (app) Docs changes by @nachoaldamav in https://github.com/pheralb/superui/pull/107
    • ⚒️ Add /docs page + fix sidebar links + 404 page. by @pheralb in https://github.com/pheralb/superui/pull/108
    • add(SEO): added SEO tags implementation by @Davidr2998 in https://github.com/pheralb/superui/pull/109
    • ⚒️ Add new landing page + fix footer. by @pheralb in https://github.com/pheralb/superui/pull/111
    • ⚒️ Fix /landing folder. by @pheralb in https://github.com/pheralb/superui/pull/113
    • docs 📝: (app) Add more docs by @nachoaldamav in https://github.com/pheralb/superui/pull/114
    • fix 🐛: (app) Add styles to CMDK docs by @nachoaldamav in https://github.com/pheralb/superui/pull/115
    • ⚒️ Fix next-seo config & /docs title. by @pheralb in https://github.com/pheralb/superui/pull/116
    • 🐛 Fix next-seo config. by @pheralb in https://github.com/pheralb/superui/pull/117
    • docs 📝: (app) Add toast page by @nachoaldamav in https://github.com/pheralb/superui/pull/118
    • fix(docs): Input doc fix by @Davidr2998 in https://github.com/pheralb/superui/pull/119
    • ⚒️ Create, delete, view component. by @pheralb in https://github.com/pheralb/superui/pull/120
    • refactor 🔨: (app) Add contexts to sandbox by @nachoaldamav in https://github.com/pheralb/superui/pull/121
    • 🐛 Fix publish function. by @pheralb in https://github.com/pheralb/superui/pull/122
    • chore 🔧: (ui) Bump UI version to v0.0.5 by @nachoaldamav in https://github.com/pheralb/superui/pull/123
    • docs 📝: (app) Add tailwind config to "Getting started" by @nachoaldamav in https://github.com/pheralb/superui/pull/124
    • ⚒️ Fix documentation. by @pheralb in https://github.com/pheralb/superui/pull/125
    • ⚒️ Add /auth page. by @pheralb in https://github.com/pheralb/superui/pull/126
    • 🚀 Alpha version ready. by @pheralb in https://github.com/pheralb/superui/pull/127
    • 🐛 Fix @superui/styles. by @pheralb in https://github.com/pheralb/superui/pull/128

    Full Changelog: https://github.com/pheralb/superui/compare/v0.0.1...v0.0.5

    Source code(tar.gz)
    Source code(zip)
  • v0.0.1(Aug 19, 2022)

    What's Changed

    • Merge dev branch by @nachoaldamav in https://github.com/pheralb/superui/pull/56
    • Naldama by @nachoaldamav in https://github.com/pheralb/superui/pull/57
    • fix 🐛: (ui) Fix GH Action by @nachoaldamav in https://github.com/pheralb/superui/pull/58
    • Fix package name by @nachoaldamav in https://github.com/pheralb/superui/pull/59

    Full Changelog: https://github.com/pheralb/superui/compare/v0.0.0...v0.0.1

    Source code(tar.gz)
    Source code(zip)
Owner
Pablo Hdez
Front-End Web Developer👨‍💻. In ❤️ with React.
Pablo Hdez
dynamic-component-app is an angular application for dynamic component template creation

MyApp This project was generated with Angular CLI version 14.1.0. Development server Run ng serve for a dev server. Navigate to http://localhost:4200/

Aniket Muruskar 7 Aug 26, 2022
This is my portfolio GitHub clone website. The frontend is build using NextJS and TailwindCSS.

Github Clone Portfolio Website Tech Stack used: NextJS Tailwind CSS The contact form in this website is connected to Notion. If you want to integrate

Unnati Bamania 22 Oct 5, 2022
A CLI for generating starter files for different JS frameworks with tailwindCSS pre-installed

tailwindcsscli A CLI for generating starter files for different JS frameworks with tailwindCSS pre-installed Installation To install the CLI, run the

Kira 12 Sep 30, 2022
Rede social baseada no ShareMe para compartilhamento e download de fotos em React,Sanity.io e TailWindCSS

Photophan ?? Descrição phothopan é uma rede social para o compartilhamento e download de imagens,foi desenvolvida utilizando React(Frontend),Sanity(Ba

Bruno Ariel 2 Jan 8, 2022
A TailwindCSS variant for class-based dark mode with CSS Modules.

A TailwindCSS variant for class-based dark mode with Svelte's scoped stylesheets and CSS modules. If you've ever tried to use TailwindCSS dark mode wi

Bryan Lee 13 Dec 1, 2022
Palette plugin using CSS variables for TailwindCSS

Palette plugin using CSS variables for TailwindCSS Adds a color palette (from 100 to 900) for each color of your tailwind configuration while using CS

Liège Arthur 11 Dec 28, 2022
Medium-Clone with Next.JS, Typescript, Tailwindcss, and Sanity!!

Medium Clone ?? Overview /pages ✔️ pages/index.tsx = Homepage and list all Blogs ✔️ pages/post/[slug].tsx = Details Blog /pages/api ✔️ pages/api/creat

argikurnia 23 Nov 16, 2022
Input with floating label make with tailwindcss 3.0.18

tailwind-floating-label-input Input with floating label make with tailwindcss 3.0.18 Works with <input> and <textarea> elements. How to use <Input

Pablo David Gago Ballester 1 Feb 10, 2022
Twitter-Clone (For Learning Purpose) made with Next.js,Firebase,TailwindCss

Project Name : Twitter-Clone This is a clone of Twitter . This build is for learning purpose only. Technology Used To Build This How it look's Some im

Ankit Singh 8 Oct 4, 2022
Medium.com (Redesign with Next.js & Tailwindcss)

Medium.com (Redesign with Next.js & Tailwindcss) It is a redesign of the popular blogging website Medium.com. It is designed with React and Tailwindcs

Kazem Mirzaei 4 Jun 11, 2022
Decentralized twitter using Solidity, Ethereum, hardhat, ethers, IPFS, Next.JS, TypeScript, TailwindCSS.

DWITTER: Decentralized Twitter Check out the deployed version of this app at https://dwtr.wajeshubham.in Transactions on Ethereum are slow. Therefore,

Shubham Waje 12 Sep 2, 2022
A meditating website to clear your mind. Built with Next.JS and TailwindCSS ♥

Meditate A modern meditation web app for you to meditate on your own terms. Track your progress and share your thoughts with others. Table of Contents

Andy 5 Jul 27, 2022
Frontend of thisisbac blog. Technical stack: Next.js, ReduxToolkit, TailwindCss,...

Introduction ThisisBac frontend services are responsible for all interface actions related to ThisisBac Blog with technical stack Next.js, Redux Toolk

Dinh-Bac Nguyen 3 May 15, 2022
Frontend of ecert. Technical stack: Next.js, ReduxToolkit, TailwindCss,...

Introduction ThisisBac frontend services are responsible for all interface actions related to ThisisBac Blog with technical stack Next.js, Redux Toolk

Dinh-Bac Nguyen 3 May 15, 2022
🎬 Movie, TV Series and Actor website made with TMDb, Next.js and TailwindCSS.

Movie App Demo Getting Started ?? Development Server npm install --s --f && npm run dev # or yarn install && yarn dev ?? Production Server npm install

uh! 10 Dec 27, 2022
Stablo is a minimal blog website template built with Next.js, TailwindCSS & Sanity CMS

Stablo Blog Template - Next.js & Sanity CMS Stablo is a JAMStack Starter template built with Next.js, Tailwind CSS & Sanity CMS by Web3Templates. Clic

Web3Templates 159 Dec 30, 2022
Windows 11 clone made with 💛 using NextJS and TailwindCSS by Vishwa Gaurav.

Windows 11 Windows 11 made with ?? using NextJS and TailwindCSS by Vishwa Gaurav. ScreenShots *In Development Mode Our Social Links PageSpeed Insights

Vishwa Gaurav 29 Nov 9, 2022
NextJS Site of @jayantkageri, Designed with TailwindCSS

Jayant Hegde Kageri This repository contains the Source Code of the Website jayantkageri.in Environment Variables To run this website, you will need t

Jayant Hegde Kageri 13 Nov 27, 2022
E-commerce website using Laravel, Tailwindcss and Alpine.js

About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie

TheCodeholic 15 Dec 12, 2022