Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Portfolio Template | 933 | 3 months ago | 8 | 0bsd | JavaScript | |||||
Modern React Portfolio Template (FREE) | ||||||||||
React Spring Bottom Sheet | 781 | 13 | 10 days ago | 37 | July 06, 2022 | 95 | mit | TypeScript | ||
Accessible ♿️, Delightful ✨, & Fast 🚀 | ||||||||||
Tailwindcss Plugins | 240 | 6 | 7 | 3 years ago | 8 | August 10, 2019 | 1 | mit | JavaScript | |
🔌🌊 Set of useful plugins for tailwindcss | ||||||||||
Motionvariants | 220 | 2 months ago | TypeScript | |||||||
A collection of handmade Framer Motion variants made for your next project. | ||||||||||
Fama | 204 | 2 months ago | mit | TypeScript | ||||||
TailwindCSS based personal branding template. Built with react and framer-motion | ||||||||||
Tailwindcss Spinner | 145 | 2 | 12 | 3 years ago | 7 | July 13, 2020 | mit | JavaScript | ||
Spinner utility for Tailwind CSS | ||||||||||
Braydentw.io | 123 | a year ago | TypeScript | |||||||
🔷 My lovely portfolio built with React, NextJS, and TailwindCSS | ||||||||||
Tailwind Animations Examples | 79 | 2 months ago | gpl-3.0 | Vue | ||||||
Cool animations implemented with tailwindcss | ||||||||||
Fabric Video Editor | 57 | 4 days ago | 2 | mit | TypeScript | |||||
A simple video editor made with nextjs, react, tailwindcss, mobx, typescript and fabric.js | ||||||||||
Front End | 56 | 25 days ago | mit | CSS | ||||||
Front-end |
A starter boilerplate powered by 11ty, Sanity, Gulp, Tailwind CSS, rollup.js, Alpine.js and Taxi.js.
$ npm i -g yarn
$ yarn
In config.js
, update Sanity options and environment URLs for project compilation.
$ yarn dev
$ yarn stage
$ yarn prod
src/site/_data
src/site
will be compiled to dist
src/site/_includes/layouts/base.njk
serves as the base template for the sitesrc/site/_includes/partials
contains site partials and components that are reused across the site (modular HTML)src/assets/scss
main.scss
in src/assets/scss
serves as the base that includes the other dependent SASS filesmain.scss
gets compiled to dist/assets/css/main.min.css
.stylelintrc
contains the settings for Stylelintsrc/assets/scss/main.scss
main.js
in src/assets/js
serves as the main JS file that includes and runs all components and will be compiled to dist/assets/js/main.min.js
src/assets/js/components
src/assets/js/vendors
if not found on Yarn.eslintrc
contains the settings for ESLintsrc/assets/images
directorydist/assets/images
imageSrc
shortcode to render responsive srcset
in markupsrc/assets/svg
directorydist/assets/svg/sprite.svg
src/assets
will be copied to dist/assets
on builddist
src/site/robots.njk
./tailwind.config.js
@apply
directive when writing custom SCSS for efficiency:svg {
@apply u-inline-block u-fill-current;
}
theme()
function:.button {
animation-duration: theme('transitionDuration.normal');
}
screen()
function:.button {
margin-right: 2.8rem;
@screen sm {
margin-right: 4.2rem;
}
}
@bymattlee
on most platforms