├── .DS_Store ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── application ├── 404 │ └── 404-01.html ├── blogs │ └── blog-01.html ├── cards │ └── card-01.html ├── contacts │ └── contact-01.html ├── footers │ └── footer-01.html ├── images │ ├── 404 │ │ ├── image-01.svg │ │ ├── image-05.jpg │ │ ├── image-07.svg │ │ └── image-08.svg │ ├── blog-details │ │ ├── blog-details-01 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ ├── author-03.png │ │ │ ├── author-04.png │ │ │ ├── author-05.png │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ └── blog-details-02 │ │ │ ├── article-01.png │ │ │ ├── article-02.png │ │ │ ├── article-03.png │ │ │ ├── article-04.png │ │ │ ├── author-01.png │ │ │ ├── bannder-ad.jpg │ │ │ └── image-01.jpg │ ├── blogs │ │ ├── .DS_Store │ │ ├── blog-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── blog-02 │ │ │ ├── image-01.jpg │ │ │ └── image-02.jpg │ │ ├── blog-03 │ │ │ ├── author-01.png │ │ │ ├── blog-mini-01.jpg │ │ │ ├── blog-mini-02.jpg │ │ │ ├── blog-mini-03.jpg │ │ │ ├── image-01.jpg │ │ │ └── image-02.jpg │ │ ├── blog-04 │ │ │ ├── image-01.jpg │ │ │ └── image-02.jpg │ │ ├── blog-05 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ ├── author-03.png │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── blog-07 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ └── image-3.jpg │ │ └── blog-08 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ └── image-3.jpg │ ├── cards │ │ ├── .DS_Store │ │ ├── card-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── card-02 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ │ ├── card-03 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ ├── author-03.png │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── card-04 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── card-05 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── card-06 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ ├── image-01.jpg │ │ │ └── image-02.jpg │ │ ├── card-09 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ └── author-03.png │ │ ├── card-10 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ ├── author-03.png │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── card-11 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── card-13 │ │ │ ├── author-01.png │ │ │ ├── author-02.png │ │ │ └── author-03.png │ │ ├── card-15 │ │ │ ├── image-1.png │ │ │ ├── image-2.png │ │ │ └── image-3.png │ │ └── card-16 │ │ │ └── image-1.jpg │ ├── contact │ │ ├── .DS_Store │ │ ├── contact-11 │ │ │ └── grid-shape.svg │ │ ├── contact-13 │ │ │ ├── line-1.svg │ │ │ ├── line-2.svg │ │ │ ├── shape-1.svg │ │ │ └── shape-2.svg │ │ ├── contact-14 │ │ │ └── person.png │ │ ├── contact-image-6.svg │ │ └── contact-image-9.jpg │ ├── footers │ │ └── footer-04 │ │ │ ├── blog-01.jpg │ │ │ └── blog-02.jpg │ ├── forms │ │ ├── forms-10.svg │ │ ├── forms-6.svg │ │ └── image-01.jpg │ ├── modals │ │ ├── .DS_Store │ │ ├── image-01.svg │ │ ├── modal-07 │ │ │ └── image.jpg │ │ └── modal-09 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ └── image-3.jpg │ ├── table-grids │ │ ├── table-grid-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ ├── image-04.jpg │ │ │ ├── image-05.jpg │ │ │ ├── image-06.jpg │ │ │ ├── image-07.jpg │ │ │ └── image-08.jpg │ │ ├── table-grid-02 │ │ │ └── image-01.jpg │ │ ├── table-grid-03 │ │ │ └── image-01.jpg │ │ └── table-grid-04 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ ├── image-04.jpg │ │ │ ├── image-05.jpg │ │ │ └── image-06.jpg │ └── tables │ │ ├── image-01.png │ │ ├── image-02.png │ │ ├── image-03.png │ │ ├── image-04.png │ │ ├── image-05.png │ │ ├── image-06.png │ │ └── table-12 │ │ ├── image-01.jpg │ │ ├── image-02.jpg │ │ ├── image-03.jpg │ │ └── image-04.jpg ├── modals │ └── modal-01.html ├── navbars │ └── navbar-01.html ├── signin │ └── sign-In-up-01.html ├── table-grids │ └── table-grid-01.html └── tables │ └── tables-01.html ├── assets ├── .DS_Store ├── css │ └── tailwind.css ├── images │ ├── .DS_Store │ ├── about │ │ ├── .DS_Store │ │ ├── image-1.jpg │ │ ├── image-2.jpg │ │ └── image-3.jpg │ ├── blogs │ │ ├── .DS_Store │ │ └── blog-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ ├── brands │ │ ├── ayroui-white.svg │ │ ├── ayroui.svg │ │ ├── ecom-white.svg │ │ ├── ecom.svg │ │ ├── graygrids-white.svg │ │ ├── graygrids.svg │ │ ├── intel.svg │ │ ├── lineIcons-white.svg │ │ ├── lineicons.svg │ │ ├── logitech.svg │ │ ├── oracle.svg │ │ ├── plainadmin-white.svg │ │ ├── plainadmin.svg │ │ ├── uideck-white.svg │ │ └── uideck.svg │ ├── cards │ │ ├── .DS_Store │ │ └── card-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ ├── favicon.svg │ ├── hero │ │ ├── .DS_Store │ │ └── hero-image-01.png │ ├── logo │ │ ├── favicon.svg │ │ ├── logo copy.svg │ │ ├── logo-primary.svg │ │ ├── logo-white.svg │ │ └── logo.svg │ ├── portfolio │ │ ├── .DS_Store │ │ └── portfolio-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ ├── image-04.jpg │ │ │ ├── image-05.jpg │ │ │ └── image-06.jpg │ ├── tables │ │ ├── image-01.png │ │ ├── image-02.png │ │ ├── image-03.png │ │ ├── image-04.png │ │ ├── image-05.png │ │ └── image-06.png │ ├── team │ │ ├── .DS_Store │ │ └── team-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ ├── testimonials │ │ ├── .DS_Store │ │ └── testimonial-01 │ │ │ ├── image-01.jpg │ │ │ ├── lineicon-white.svg │ │ │ └── lineicon.svg │ └── videos │ │ ├── .DS_Store │ │ └── image-01.jpg └── js │ └── alpine.min.js ├── core-components ├── .DS_Store ├── account-dropdowns │ ├── account-dropdown-01.html │ ├── account-dropdown-02.html │ ├── account-dropdown-03.html │ └── account-dropdown-04.html ├── alerts │ └── alerts.html ├── avatars │ ├── avatars-01.html │ ├── avatars-02.html │ ├── avatars-03.html │ ├── avatars-04.html │ ├── avatars-05.html │ ├── avatars-06.html │ ├── avatars-07.html │ ├── avatars-08.html │ ├── avatars-09.html │ ├── avatars-10.html │ └── avatars-11.html ├── badges │ └── badges.html ├── breadcrumbs │ └── breadcrumbs.html ├── button-groups │ ├── button-group-01.html │ ├── button-group-02.html │ └── button-group-03.html ├── buttons │ └── buttons.html ├── clipboards │ ├── clipboard-01.html │ ├── clipboard-02.html │ ├── clipboard-03.html │ └── clipboard-04.html ├── date-picker │ ├── date-picker-01.html │ ├── date-picker-02.html │ ├── date-picker-03.html │ └── date-picker-04.html ├── dropdowns │ └── dropdowns.html ├── file-uploads │ ├── file-upload-01.html │ ├── file-upload-02.html │ ├── file-upload-03.html │ ├── file-upload-04.html │ └── file-upload-05.html ├── galleries │ ├── gallery-01.html │ ├── gallery-02.html │ ├── gallery-03.html │ ├── gallery-04.html │ └── gallery-05.html ├── images │ ├── .DS_Store │ ├── account-dropdowns │ │ └── image-1.jpg │ ├── avatar │ │ ├── image-01.jpg │ │ ├── image-02.jpg │ │ ├── image-03.jpg │ │ ├── image-04.jpg │ │ └── image-05.jpg │ ├── file-upload │ │ └── grid-shape-1.svg │ ├── galleries │ │ ├── .DS_Store │ │ ├── gallery-01 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ └── image-4.jpg │ │ ├── gallery-02 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── image-5.jpg │ │ │ ├── image-6.jpg │ │ │ ├── image-7.jpg │ │ │ ├── image-8.jpg │ │ │ └── image-9.jpg │ │ ├── gallery-03 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── image-5.jpg │ │ │ └── image-6.jpg │ │ ├── gallery-04 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── image-5.jpg │ │ │ ├── image-6.jpg │ │ │ ├── image-7.jpg │ │ │ ├── image-8.jpg │ │ │ └── image-9.jpg │ │ └── gallery-05 │ │ │ ├── .DS_Store │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── thumbnail-1.jpg │ │ │ ├── thumbnail-2.jpg │ │ │ ├── thumbnail-3.jpg │ │ │ └── thumbnail-4.jpg │ ├── mega-menu │ │ └── image-1.jpg │ ├── page-title │ │ └── image.png │ └── toast │ │ ├── image-01.png │ │ └── image-02.png ├── input-range │ ├── input-range-01.html │ ├── input-range-02.html │ └── input-range-03.html ├── inputs │ └── input.html ├── lists │ └── lists.html ├── mega-menu │ ├── mega-menu-01.html │ ├── mega-menu-02.html │ └── mega-menu-03.html ├── otp │ ├── otp -01.html │ ├── otp-02.html │ ├── otp-03.html │ └── otp-04.html ├── page-title │ ├── page-title-01.html │ ├── page-title-02.html │ ├── page-title-03.html │ ├── page-title-04.html │ └── page-title-05.html ├── paginations │ ├── pagination-01.html │ ├── pagination-02.html │ ├── pagination-03.html │ ├── pagination-04.html │ ├── pagination-05.html │ └── pagination-06.html ├── progress-bars │ └── progress-bars.html ├── ratings │ ├── rating-01.html │ ├── rating-02.html │ └── rating-03.html ├── select │ └── select.html ├── skeletons │ ├── skeleton-01.html │ ├── skeleton-02.html │ └── skeleton-03.html ├── spinners │ ├── spinner-01.html │ ├── spinner-02.html │ ├── spinner-03.html │ └── spinner-04.html ├── sticky-bars │ ├── sticky-bar-01.html │ ├── sticky-bar-02.html │ ├── sticky-bar-03.html │ └── sticky-bar-04.html ├── switches │ ├── switch-02.html │ └── switch.html ├── tabs │ ├── tabs-02.html │ └── tabs.html ├── tags │ └── tags.html ├── textarea │ └── textarea.html ├── time-picker │ └── time-picker-01.html ├── toasts │ ├── toast-01.html │ ├── toast-02.html │ ├── toast-03.html │ ├── toast-04.html │ ├── toast-05.html │ ├── toast-06.html │ ├── toast-07.html │ └── toast-08.html └── tooltips │ └── tooltips.html ├── marketing ├── .DS_Store ├── abouts │ └── about-01.html ├── brands │ └── brands-01.html ├── call-to-actions │ └── cta-01.html ├── faqs │ └── faq-01.html ├── heros │ └── hero-01.html ├── images │ ├── .DS_Store │ ├── about │ │ ├── .DS_Store │ │ ├── about-01 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ └── image-3.jpg │ │ ├── about-02 │ │ │ └── image-01.png │ │ ├── about-03 │ │ │ └── image-01.svg │ │ ├── about-04 │ │ │ ├── image-01.jpg │ │ │ └── image-02.jpg │ │ ├── about-05 │ │ │ ├── image-01.jpg │ │ │ └── image-02.jpg │ │ ├── about-06 │ │ │ └── video-thumbnail.jpg │ │ ├── about-08 │ │ │ └── image-01.jpg │ │ ├── about-09 │ │ │ ├── image-1.jpg │ │ │ └── image-2.jpg │ │ ├── about-10 │ │ │ └── image-1.jpg │ │ ├── about-11.png │ │ ├── about-11 │ │ │ └── about-11.png │ │ ├── about-12 │ │ │ ├── image-1.jpg │ │ │ ├── shape-1.svg │ │ │ └── shape-2.svg │ │ └── about-13 │ │ │ └── image-1.png │ ├── cta │ │ ├── cta.jpg │ │ ├── image-01.png │ │ ├── image-02.jpg │ │ ├── image-03.jpg │ │ └── mobile-01.svg │ ├── forms │ │ ├── form-3-bg.jpg │ │ ├── form-4.svg │ │ └── form-5.jpg │ ├── hero │ │ ├── .DS_Store │ │ ├── hero-12 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ └── image-3.jpg │ │ ├── hero-14 │ │ │ ├── .DS_Store │ │ │ ├── dots-shape.svg │ │ │ └── image-01.png │ │ ├── hero-4-bg.svg │ │ ├── hero-bg-13.jpg │ │ ├── hero-image-01.png │ │ ├── hero-image-02.jpg │ │ ├── hero-image-03.png │ │ ├── hero-image-04.png │ │ ├── hero-image-05.jpg │ │ ├── hero-image-06.svg │ │ ├── hero-image-07.jpg │ │ ├── hero-image-08.svg │ │ ├── hero-image-10.png │ │ └── hero6-shape-1.svg │ ├── portfolio │ │ ├── portfolio-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ ├── image-04.jpg │ │ │ ├── image-05.jpg │ │ │ └── image-06.jpg │ │ ├── portfolio-02 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── portfolio-03 │ │ │ └── image-01.svg │ │ ├── portfolio-04 │ │ │ └── image-01.jpg │ │ ├── portfolio-05 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ │ ├── portfolio-06 │ │ │ ├── portfolio-01.jpg │ │ │ ├── portfolio-02.jpg │ │ │ └── portfolio-03.jpg │ │ └── portfolio-07 │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ └── image-4.jpg │ ├── services │ │ ├── .DS_Store │ │ ├── services-06 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── services-08 │ │ │ ├── image-1.svg │ │ │ ├── image-2.svg │ │ │ └── image-3.svg │ │ ├── services-10 │ │ │ ├── dots-shape-2.svg │ │ │ ├── dots-shape.svg │ │ │ └── image-1.jpg │ │ └── services-11 │ │ │ └── image-1.jpg │ ├── stats │ │ └── background-shape.svg │ ├── team │ │ ├── image-07 │ │ │ ├── image-01.png │ │ │ ├── image-02.png │ │ │ ├── image-03.png │ │ │ ├── image-04.png │ │ │ └── image-05.png │ │ ├── team-01 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ │ ├── team-02 │ │ │ ├── image-01.png │ │ │ ├── image-02.png │ │ │ ├── image-03.png │ │ │ └── image-04.png │ │ ├── team-03 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ └── image-03.jpg │ │ ├── team-04 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ │ ├── team-05 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ │ └── team-06 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ ├── testimonials │ │ ├── testimonial-01 │ │ │ ├── image-01.jpg │ │ │ ├── lineicon-white.svg │ │ │ └── lineicon.svg │ │ ├── testimonial-02 │ │ │ └── image-01.jpg │ │ ├── testimonial-03 │ │ │ ├── image-01.png │ │ │ └── image-02.png │ │ ├── testimonial-04 │ │ │ ├── image-01.png │ │ │ ├── image-02.png │ │ │ └── image-03.png │ │ ├── testimonial-05 │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ └── image-04.jpg │ │ └── testimonial-06 │ │ │ ├── image-1.png │ │ │ ├── image-2.png │ │ │ ├── image-3.png │ │ │ ├── image-4.png │ │ │ ├── image-5.png │ │ │ └── image-6.png │ └── videos │ │ ├── image-01.jpg │ │ ├── image-02.jpg │ │ └── image-03.jpg ├── newsletters │ └── newsletter-01.html ├── portfolios │ └── portfolio-01.html ├── pricings │ └── pricing-01.html ├── services │ └── services-01.html ├── stats │ └── stats-01.html ├── teams │ └── team-01.html ├── testimonials │ └── testimonial-01.html └── videos │ └── video-01.html ├── package-lock.json ├── package.json ├── plugin.js ├── postcss.config.js └── src └── tailwind.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: 🚀 tailgrids release 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | release: 11 | name: 🚀 tailgrids release 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: 📚 checkout 15 | uses: actions/checkout@v2 16 | - name: 🟢 node 17 | uses: actions/setup-node@v2 18 | with: 19 | node-version: 12 20 | registry-url: https://registry.npmjs.org 21 | - name: installing packages 22 | run: npm ci 23 | - name: 🚀 publish 24 | run: npm publish --access public 25 | env: 26 | NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | ./node_modules 3 | ./node_modules/ 4 | assets/images/ 5 | .DS_Store 6 | 7 | ./**/images/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["prettier-plugin-tailwindcss"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502, 3 | "css.validate": false 4 | } 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 TailGrids 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /application/404/404-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Error 404 | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 |
22 |

25 | 404 26 |

27 |

30 | Oops! That page can’t be found 31 |

32 |

33 | The page you are looking for it maybe deleted 34 |

35 | 39 | Go To Home 40 | 41 |
42 |
43 |
44 |
45 | 46 |
49 |
52 |
53 |
56 |
59 |
60 |
63 |
64 |
65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /application/images/404/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/404/image-05.jpg -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/author-01.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/author-02.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/author-03.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/author-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/author-04.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/author-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/author-05.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/image-01.jpg -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/image-02.jpg -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-01/image-03.jpg -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/article-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/article-01.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/article-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/article-02.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/article-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/article-03.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/article-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/article-04.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/author-01.png -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/bannder-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/bannder-ad.jpg -------------------------------------------------------------------------------- /application/images/blog-details/blog-details-02/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blog-details/blog-details-02/image-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/.DS_Store -------------------------------------------------------------------------------- /application/images/blogs/blog-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-01/image-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-01/image-02.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-01/image-03.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-02/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-02/image-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-02/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-02/image-02.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-03/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-03/author-01.png -------------------------------------------------------------------------------- /application/images/blogs/blog-03/blog-mini-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-03/blog-mini-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-03/blog-mini-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-03/blog-mini-02.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-03/blog-mini-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-03/blog-mini-03.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-03/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-03/image-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-03/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-03/image-02.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-04/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-04/image-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-04/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-04/image-02.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-05/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-05/author-01.png -------------------------------------------------------------------------------- /application/images/blogs/blog-05/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-05/author-02.png -------------------------------------------------------------------------------- /application/images/blogs/blog-05/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-05/author-03.png -------------------------------------------------------------------------------- /application/images/blogs/blog-05/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-05/image-01.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-05/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-05/image-02.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-05/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-05/image-03.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-07/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-07/image-1.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-07/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-07/image-2.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-07/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-07/image-3.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-08/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-08/image-1.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-08/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-08/image-2.jpg -------------------------------------------------------------------------------- /application/images/blogs/blog-08/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/blogs/blog-08/image-3.jpg -------------------------------------------------------------------------------- /application/images/cards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/.DS_Store -------------------------------------------------------------------------------- /application/images/cards/card-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-01/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-01/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-01/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-02/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-02/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-02/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-02/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-02/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-02/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-02/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-02/image-04.jpg -------------------------------------------------------------------------------- /application/images/cards/card-03/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-03/author-01.png -------------------------------------------------------------------------------- /application/images/cards/card-03/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-03/author-02.png -------------------------------------------------------------------------------- /application/images/cards/card-03/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-03/author-03.png -------------------------------------------------------------------------------- /application/images/cards/card-03/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-03/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-03/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-03/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-03/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-03/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-04/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-04/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-04/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-04/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-04/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-04/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-05/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-05/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-05/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-05/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-05/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-05/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-06/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-06/author-01.png -------------------------------------------------------------------------------- /application/images/cards/card-06/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-06/author-02.png -------------------------------------------------------------------------------- /application/images/cards/card-06/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-06/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-06/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-06/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-09/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-09/author-01.png -------------------------------------------------------------------------------- /application/images/cards/card-09/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-09/author-02.png -------------------------------------------------------------------------------- /application/images/cards/card-09/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-09/author-03.png -------------------------------------------------------------------------------- /application/images/cards/card-10/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-10/author-01.png -------------------------------------------------------------------------------- /application/images/cards/card-10/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-10/author-02.png -------------------------------------------------------------------------------- /application/images/cards/card-10/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-10/author-03.png -------------------------------------------------------------------------------- /application/images/cards/card-10/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-10/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-10/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-10/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-10/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-10/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-11/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-11/image-01.jpg -------------------------------------------------------------------------------- /application/images/cards/card-11/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-11/image-02.jpg -------------------------------------------------------------------------------- /application/images/cards/card-11/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-11/image-03.jpg -------------------------------------------------------------------------------- /application/images/cards/card-13/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-13/author-01.png -------------------------------------------------------------------------------- /application/images/cards/card-13/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-13/author-02.png -------------------------------------------------------------------------------- /application/images/cards/card-13/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-13/author-03.png -------------------------------------------------------------------------------- /application/images/cards/card-15/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-15/image-1.png -------------------------------------------------------------------------------- /application/images/cards/card-15/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-15/image-2.png -------------------------------------------------------------------------------- /application/images/cards/card-15/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-15/image-3.png -------------------------------------------------------------------------------- /application/images/cards/card-16/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/cards/card-16/image-1.jpg -------------------------------------------------------------------------------- /application/images/contact/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/contact/.DS_Store -------------------------------------------------------------------------------- /application/images/contact/contact-13/line-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /application/images/contact/contact-13/line-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /application/images/contact/contact-14/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/contact/contact-14/person.png -------------------------------------------------------------------------------- /application/images/contact/contact-image-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/contact/contact-image-9.jpg -------------------------------------------------------------------------------- /application/images/footers/footer-04/blog-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/footers/footer-04/blog-01.jpg -------------------------------------------------------------------------------- /application/images/footers/footer-04/blog-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/footers/footer-04/blog-02.jpg -------------------------------------------------------------------------------- /application/images/forms/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/forms/image-01.jpg -------------------------------------------------------------------------------- /application/images/modals/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/modals/.DS_Store -------------------------------------------------------------------------------- /application/images/modals/modal-07/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/modals/modal-07/image.jpg -------------------------------------------------------------------------------- /application/images/modals/modal-09/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/modals/modal-09/image-1.jpg -------------------------------------------------------------------------------- /application/images/modals/modal-09/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/modals/modal-09/image-2.jpg -------------------------------------------------------------------------------- /application/images/modals/modal-09/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/modals/modal-09/image-3.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-01.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-02.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-03.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-04.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-05.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-06.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-07.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-01/image-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-01/image-08.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-02/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-02/image-01.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-03/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-03/image-01.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-04/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-04/image-01.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-04/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-04/image-02.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-04/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-04/image-03.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-04/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-04/image-04.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-04/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-04/image-05.jpg -------------------------------------------------------------------------------- /application/images/table-grids/table-grid-04/image-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/table-grids/table-grid-04/image-06.jpg -------------------------------------------------------------------------------- /application/images/tables/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/image-01.png -------------------------------------------------------------------------------- /application/images/tables/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/image-02.png -------------------------------------------------------------------------------- /application/images/tables/image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/image-03.png -------------------------------------------------------------------------------- /application/images/tables/image-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/image-04.png -------------------------------------------------------------------------------- /application/images/tables/image-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/image-05.png -------------------------------------------------------------------------------- /application/images/tables/image-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/image-06.png -------------------------------------------------------------------------------- /application/images/tables/table-12/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/table-12/image-01.jpg -------------------------------------------------------------------------------- /application/images/tables/table-12/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/table-12/image-02.jpg -------------------------------------------------------------------------------- /application/images/tables/table-12/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/table-12/image-03.jpg -------------------------------------------------------------------------------- /application/images/tables/table-12/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/application/images/tables/table-12/image-04.jpg -------------------------------------------------------------------------------- /application/modals/modal-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Modal | TailGrids 8 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 | 27 |
28 | 29 |
34 |
38 |

41 | Your Message Sent Successfully 42 |

43 | 46 |

49 | Lorem Ipsum is simply dummy text of the printing and typesetting 50 | industry. Lorem Ipsum has been the industry's standard dummy text 51 | ever since 52 |

53 |
54 |
55 | 61 |
62 |
63 | 68 |
69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/.DS_Store -------------------------------------------------------------------------------- /assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/.DS_Store -------------------------------------------------------------------------------- /assets/images/about/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/about/.DS_Store -------------------------------------------------------------------------------- /assets/images/about/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/about/image-1.jpg -------------------------------------------------------------------------------- /assets/images/about/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/about/image-2.jpg -------------------------------------------------------------------------------- /assets/images/about/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/about/image-3.jpg -------------------------------------------------------------------------------- /assets/images/blogs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/blogs/.DS_Store -------------------------------------------------------------------------------- /assets/images/blogs/blog-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/blogs/blog-01/image-01.jpg -------------------------------------------------------------------------------- /assets/images/blogs/blog-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/blogs/blog-01/image-02.jpg -------------------------------------------------------------------------------- /assets/images/blogs/blog-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/blogs/blog-01/image-03.jpg -------------------------------------------------------------------------------- /assets/images/brands/ayroui-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/images/brands/ayroui.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /assets/images/brands/oracle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /assets/images/cards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/cards/.DS_Store -------------------------------------------------------------------------------- /assets/images/cards/card-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/cards/card-01/image-01.jpg -------------------------------------------------------------------------------- /assets/images/cards/card-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/cards/card-01/image-02.jpg -------------------------------------------------------------------------------- /assets/images/cards/card-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/cards/card-01/image-03.jpg -------------------------------------------------------------------------------- /assets/images/favicon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/hero/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/hero/.DS_Store -------------------------------------------------------------------------------- /assets/images/hero/hero-image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/hero/hero-image-01.png -------------------------------------------------------------------------------- /assets/images/logo/favicon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/portfolio/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/.DS_Store -------------------------------------------------------------------------------- /assets/images/portfolio/portfolio-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/portfolio-01/image-01.jpg -------------------------------------------------------------------------------- /assets/images/portfolio/portfolio-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/portfolio-01/image-02.jpg -------------------------------------------------------------------------------- /assets/images/portfolio/portfolio-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/portfolio-01/image-03.jpg -------------------------------------------------------------------------------- /assets/images/portfolio/portfolio-01/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/portfolio-01/image-04.jpg -------------------------------------------------------------------------------- /assets/images/portfolio/portfolio-01/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/portfolio-01/image-05.jpg -------------------------------------------------------------------------------- /assets/images/portfolio/portfolio-01/image-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/portfolio/portfolio-01/image-06.jpg -------------------------------------------------------------------------------- /assets/images/tables/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/tables/image-01.png -------------------------------------------------------------------------------- /assets/images/tables/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/tables/image-02.png -------------------------------------------------------------------------------- /assets/images/tables/image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/tables/image-03.png -------------------------------------------------------------------------------- /assets/images/tables/image-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/tables/image-04.png -------------------------------------------------------------------------------- /assets/images/tables/image-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/tables/image-05.png -------------------------------------------------------------------------------- /assets/images/tables/image-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/tables/image-06.png -------------------------------------------------------------------------------- /assets/images/team/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/team/.DS_Store -------------------------------------------------------------------------------- /assets/images/team/team-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/team/team-01/image-01.jpg -------------------------------------------------------------------------------- /assets/images/team/team-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/team/team-01/image-02.jpg -------------------------------------------------------------------------------- /assets/images/team/team-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/team/team-01/image-03.jpg -------------------------------------------------------------------------------- /assets/images/team/team-01/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/team/team-01/image-04.jpg -------------------------------------------------------------------------------- /assets/images/testimonials/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/testimonials/.DS_Store -------------------------------------------------------------------------------- /assets/images/testimonials/testimonial-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/testimonials/testimonial-01/image-01.jpg -------------------------------------------------------------------------------- /assets/images/videos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/videos/.DS_Store -------------------------------------------------------------------------------- /assets/images/videos/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/assets/images/videos/image-01.jpg -------------------------------------------------------------------------------- /core-components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/.DS_Store -------------------------------------------------------------------------------- /core-components/avatars/avatars-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 |
27 |
28 | avatar 33 |
34 |
35 | avatar 40 |
41 |
42 | avatar 47 |
48 |
49 | avatar 54 |
55 |
56 |
57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 |
27 |
28 | avatar 33 |
34 |
35 | avatar 40 |
41 |
42 | avatar 47 |
48 |
49 | avatar 54 |
55 |
56 |
57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 |
27 |
28 | avatar 33 |
34 |
35 | avatar 40 |
41 |
42 | avatar 47 |
48 |
49 | avatar 54 |
55 |
56 |
57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 |
27 |
28 | avatar 33 |
34 |
35 | avatar 40 |
41 |
42 | avatar 47 |
48 |
49 | avatar 54 |
55 |
56 |
57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 | 29 |
30 |
31 | avatar 36 | 39 |
40 |
41 | avatar 46 | 49 |
50 |
51 | avatar 56 | 59 |
60 |
61 | avatar 66 | 69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 | 29 |
30 |
31 | avatar 36 | 39 |
40 |
41 | avatar 46 | 49 |
50 |
51 | avatar 56 | 59 |
60 |
61 | avatar 66 | 69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 | 29 |
30 |
31 | avatar 36 | 39 |
40 |
41 | avatar 46 | 49 |
50 |
51 | avatar 56 | 59 |
60 |
61 | avatar 66 | 69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | avatar 26 | 29 |
30 |
31 | avatar 36 | 39 |
40 |
41 | avatar 46 | 49 |
50 |
51 | avatar 56 | 59 |
60 |
61 | avatar 66 | 69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 | avatar 28 |
29 |
32 | avatar 37 |
38 |
41 | avatar 46 |
47 |
50 | avatar 55 |
56 |
59 | avatar 64 |
65 |
66 |
67 |
68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /core-components/avatars/avatars-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Avatars | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 | avatar 28 |
29 |
32 | avatar 37 |
38 |
41 | avatar 46 |
47 |
50 | avatar 55 |
56 |
59 | avatar 64 |
65 |
66 |
67 |
68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /core-components/button-groups/button-group-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Button groups | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 | 28 | 33 | 38 |
39 |
40 |
41 |
42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /core-components/file-uploads/file-upload-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | File Upload | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 | 25 |
26 | 30 |
31 |
32 |
33 |
34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /core-components/file-uploads/file-upload-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | File Upload | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 | 26 | 30 |
31 |
32 |
33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /core-components/galleries/gallery-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gallery | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | gallery image 26 |
27 |
28 | gallery image 33 |
34 |
35 | gallery image 40 |
41 |
42 | gallery image 47 |
48 |
49 |
50 |
51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /core-components/galleries/gallery-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gallery | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | gallery image 26 |
27 |
28 | gallery image 33 |
34 |
35 | gallery image 40 |
41 |
42 | gallery image 47 |
48 |
49 | gallery image 54 |
55 |
56 | gallery image 61 |
62 |
63 | gallery image 68 |
69 |
70 | gallery image 75 |
76 |
77 | gallery image 82 |
83 |
84 |
85 |
86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /core-components/galleries/gallery-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gallery | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | gallery image 26 |
27 |
28 | gallery image 33 |
34 |
35 | gallery image 40 |
41 |
42 | gallery image 47 |
48 |
49 | gallery image 54 |
55 |
56 | gallery image 61 |
62 |
63 |
64 |
65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /core-components/galleries/gallery-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gallery | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | gallery image 26 |
27 |
28 | gallery image 33 |
34 |
35 | gallery image 40 |
41 |
42 | gallery image 47 |
48 |
49 | gallery image 54 |
55 |
56 | gallery image 61 |
62 |
63 | gallery image 68 |
69 |
70 | gallery image 75 |
76 |
77 | gallery image 82 |
83 |
84 |
85 |
86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /core-components/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/.DS_Store -------------------------------------------------------------------------------- /core-components/images/account-dropdowns/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/account-dropdowns/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/avatar/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/avatar/image-01.jpg -------------------------------------------------------------------------------- /core-components/images/avatar/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/avatar/image-02.jpg -------------------------------------------------------------------------------- /core-components/images/avatar/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/avatar/image-03.jpg -------------------------------------------------------------------------------- /core-components/images/avatar/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/avatar/image-04.jpg -------------------------------------------------------------------------------- /core-components/images/avatar/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/avatar/image-05.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/.DS_Store -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-01/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-01/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-01/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-01/image-2.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-01/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-01/image-3.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-01/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-01/image-4.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-2.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-3.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-4.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-5.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-6.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-7.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-8.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-02/image-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-02/image-9.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-03/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-03/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-03/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-03/image-2.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-03/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-03/image-3.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-03/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-03/image-4.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-03/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-03/image-5.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-03/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-03/image-6.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-2.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-3.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-4.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-5.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-6.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-7.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-8.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-04/image-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-04/image-9.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/.DS_Store -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/image-2.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/image-3.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/image-4.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/thumbnail-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/thumbnail-1.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/thumbnail-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/thumbnail-2.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/thumbnail-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/thumbnail-3.jpg -------------------------------------------------------------------------------- /core-components/images/galleries/gallery-05/thumbnail-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/galleries/gallery-05/thumbnail-4.jpg -------------------------------------------------------------------------------- /core-components/images/mega-menu/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/mega-menu/image-1.jpg -------------------------------------------------------------------------------- /core-components/images/page-title/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/page-title/image.png -------------------------------------------------------------------------------- /core-components/images/toast/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/toast/image-01.png -------------------------------------------------------------------------------- /core-components/images/toast/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/core-components/images/toast/image-02.png -------------------------------------------------------------------------------- /core-components/page-title/page-title-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Page Title | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |

21 | States Statistics 22 |

23 |

24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 25 | ultrices lectus sem. 26 |

27 |
28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /core-components/page-title/page-title-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Page Title | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |

21 | States Statistics 22 |

23 |

24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 25 | ultrices lectus sem. 26 |

27 |
28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /core-components/page-title/page-title-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Page Title | TailGrids 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |
18 |
19 |

20 | Your Favorite Items 21 |

22 |

23 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 24 | ultrices lectus sem. 25 |

26 |
27 |
28 | 45 |
46 |
47 |
48 |
49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /core-components/page-title/page-title-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Page Title | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
22 |
25 | page title 30 |
31 |
32 |

33 | Hey Devid Wisedom 👋 34 |

35 |

36 | Lorem ipsum dolor sit amet, consectetur adipiscing elit ante. 37 |

38 |
39 |
40 |
41 |
42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /core-components/page-title/page-title-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Page Title | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |

21 | States Statistics 22 |

23 |

24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 25 | ultrices lectus sem. 26 |

27 |
28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /core-components/paginations/pagination-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Pagination | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 | 68 |
69 |
70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /core-components/skeletons/skeleton-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Skeleton | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 |
26 |
29 |
32 |
33 |
34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /core-components/skeletons/skeleton-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Skeleton | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 | 30 | 34 | 38 | 39 |
40 |
41 |
44 |
47 |
50 |
51 |
52 |
53 |
54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /core-components/skeletons/skeleton-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Skeleton | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 | 30 | 34 | 35 |
36 |
37 |
40 |
43 |
46 |
49 |
52 |
55 |
56 |
57 |
58 |
59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /core-components/sticky-bars/sticky-bar-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sticky Bar | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
20 |
21 |
22 | 25 | New 26 | 27 |

30 | We have launched Brand new Blocks featuring over 300+ UI Elements! 31 |

32 | 36 | Check Out 37 | 38 | 45 | 49 | 50 | 51 | 52 | 53 | 79 |
80 |
81 |
82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /core-components/sticky-bars/sticky-bar-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sticky Bar | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
20 |
21 |
22 |
23 | 24 | logo 29 | 34 | 35 | 38 |

39 | 500+ Tailwind CSS UI Components, Blocks and Templates Collections 40 |

41 |
42 |
43 | 47 | Sign up 48 | 49 | 75 |
76 |
77 |
78 |
79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /core-components/sticky-bars/sticky-bar-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sticky Bar | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
21 |
22 |

25 | On Sale For A Very Limited Time! 26 | Get it now→ 27 |

28 | 29 | 55 |
56 |
57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /core-components/sticky-bars/sticky-bar-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sticky Bar | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
22 |

23 | Flat 70% Discount, Hurry Up to Grab the Deal! Sale ends in 24 |

25 |
28 | 3 29 | : 30 | 12 31 | : 32 | 49 33 | : 34 | 54 35 |
36 | 40 | Get it now→ 41 | 42 |
43 | 69 |
70 |
71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /core-components/tags/tags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Tags | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 | 25 | 30 | 35 | 40 |
41 |
42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /core-components/toasts/toast-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Toast | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
22 | 45 |
48 | user image 53 |
54 |
55 |
56 | Nelly Miller 57 |
58 |
59 |

60 | Purchased polo t-shirt for man 61 |

62 | 63 | 2 min ago 64 | 65 |
66 |
67 |
68 |
69 |
70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /core-components/toasts/toast-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Toast | TailGrids 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |
19 |
20 |
21 | user image 23 |
24 |
25 |
26 | Devid Miller 27 |
28 |

29 | Started following your 30 |

31 |
32 |
33 |
34 | 37 | 40 | 54 |
55 |
56 |
57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /core-components/toasts/toast-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Toast | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
23 | 26 | 33 | 37 | 38 | 39 |

40 | Message sent successfully 41 |

42 | 65 |
66 |
67 |
68 |
69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /marketing/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/.DS_Store -------------------------------------------------------------------------------- /marketing/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/.DS_Store -------------------------------------------------------------------------------- /marketing/images/about/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/.DS_Store -------------------------------------------------------------------------------- /marketing/images/about/about-01/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-01/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-01/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-01/image-2.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-01/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-01/image-3.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-02/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-02/image-01.png -------------------------------------------------------------------------------- /marketing/images/about/about-04/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-04/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-04/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-04/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-05/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-05/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-05/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-05/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-06/video-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-06/video-thumbnail.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-08/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-08/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-09/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-09/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-09/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-09/image-2.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-10/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-10/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-11.png -------------------------------------------------------------------------------- /marketing/images/about/about-11/about-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-11/about-11.png -------------------------------------------------------------------------------- /marketing/images/about/about-12/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-12/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/about/about-13/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/about/about-13/image-1.png -------------------------------------------------------------------------------- /marketing/images/cta/cta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/cta/cta.jpg -------------------------------------------------------------------------------- /marketing/images/cta/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/cta/image-01.png -------------------------------------------------------------------------------- /marketing/images/cta/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/cta/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/cta/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/cta/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/forms/form-3-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/forms/form-3-bg.jpg -------------------------------------------------------------------------------- /marketing/images/forms/form-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/forms/form-5.jpg -------------------------------------------------------------------------------- /marketing/images/hero/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/.DS_Store -------------------------------------------------------------------------------- /marketing/images/hero/hero-12/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-12/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-12/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-12/image-2.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-12/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-12/image-3.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-14/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-14/.DS_Store -------------------------------------------------------------------------------- /marketing/images/hero/hero-14/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-14/image-01.png -------------------------------------------------------------------------------- /marketing/images/hero/hero-4-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /marketing/images/hero/hero-bg-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-bg-13.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-01.png -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-02.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-03.png -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-04.png -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-05.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-07.jpg -------------------------------------------------------------------------------- /marketing/images/hero/hero-image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/hero/hero-image-10.png -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-01/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-01/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-01/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-01/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-01/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-01/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-01/image-05.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-01/image-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-01/image-06.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-02/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-02/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-02/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-02/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-02/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-02/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-04/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-04/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-05/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-05/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-05/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-05/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-05/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-05/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-05/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-05/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-06/portfolio-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-06/portfolio-01.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-06/portfolio-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-06/portfolio-02.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-06/portfolio-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-06/portfolio-03.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-07/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-07/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-07/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-07/image-2.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-07/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-07/image-3.jpg -------------------------------------------------------------------------------- /marketing/images/portfolio/portfolio-07/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/portfolio/portfolio-07/image-4.jpg -------------------------------------------------------------------------------- /marketing/images/services/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/services/.DS_Store -------------------------------------------------------------------------------- /marketing/images/services/services-06/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/services/services-06/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/services/services-06/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/services/services-06/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/services/services-06/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/services/services-06/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/services/services-10/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/services/services-10/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/services/services-11/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/services/services-11/image-1.jpg -------------------------------------------------------------------------------- /marketing/images/team/image-07/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/image-07/image-01.png -------------------------------------------------------------------------------- /marketing/images/team/image-07/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/image-07/image-02.png -------------------------------------------------------------------------------- /marketing/images/team/image-07/image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/image-07/image-03.png -------------------------------------------------------------------------------- /marketing/images/team/image-07/image-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/image-07/image-04.png -------------------------------------------------------------------------------- /marketing/images/team/image-07/image-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/image-07/image-05.png -------------------------------------------------------------------------------- /marketing/images/team/team-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-01/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-01/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-01/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-01/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-01/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-01/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-01/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-02/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-02/image-01.png -------------------------------------------------------------------------------- /marketing/images/team/team-02/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-02/image-02.png -------------------------------------------------------------------------------- /marketing/images/team/team-02/image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-02/image-03.png -------------------------------------------------------------------------------- /marketing/images/team/team-02/image-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-02/image-04.png -------------------------------------------------------------------------------- /marketing/images/team/team-03/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-03/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-03/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-03/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-03/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-03/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-04/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-04/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-04/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-04/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-04/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-04/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-04/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-04/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-05/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-05/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-05/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-05/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-05/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-05/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-05/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-05/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-06/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-06/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-06/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-06/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-06/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-06/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/team/team-06/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/team/team-06/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-01/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-01/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-02/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-02/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-03/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-03/image-01.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-03/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-03/image-02.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-04/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-04/image-01.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-04/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-04/image-02.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-04/image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-04/image-03.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-05/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-05/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-05/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-05/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-05/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-05/image-03.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-05/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-05/image-04.jpg -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-06/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-06/image-1.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-06/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-06/image-2.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-06/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-06/image-3.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-06/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-06/image-4.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-06/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-06/image-5.png -------------------------------------------------------------------------------- /marketing/images/testimonials/testimonial-06/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/testimonials/testimonial-06/image-6.png -------------------------------------------------------------------------------- /marketing/images/videos/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/videos/image-01.jpg -------------------------------------------------------------------------------- /marketing/images/videos/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/videos/image-02.jpg -------------------------------------------------------------------------------- /marketing/images/videos/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailGrids/tailwind-ui-components/02f3d12d4ce649f14025831a898edfc163811384/marketing/images/videos/image-03.jpg -------------------------------------------------------------------------------- /marketing/newsletters/newsletter-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Form | TailGrids 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |
18 |
19 |
20 |
21 |

22 | Start Building
23 | for Free 24 |

25 |

26 | And because your company is unique, you will need an 27 | extensible identity solution. 28 |

29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
41 |
42 |
43 |
44 |
45 |

46 | Subscribe Now 47 |

48 |
49 | 52 | 56 |
57 |

58 | You will receive every news and pro tips. 59 |

60 |
61 |
62 |
63 |
64 |
65 |
66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /marketing/stats/stats-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Stats | TailGrids 8 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 |
22 |

25 | 5M+ 26 |

27 |

28 | Customers visit Omega every month to get their service done. 29 |

30 |
31 |
32 | 33 |
34 |
35 |

38 | 92% 39 |

40 |

41 | Satisfaction rate comes from our awesome customers. 42 |

43 |
44 |
45 | 46 |
47 |
48 |

51 | 500+ 52 |

53 |

54 | Average Award we have got all over internet. 55 |

56 |
57 |
58 |
59 |
60 | 61 |
62 | graphic 67 |
68 |
69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tailgrids", 3 | "version": "2.3.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "keywords": [ 7 | "component-library", 8 | "ui-components", 9 | "tailwind", 10 | "react-components", 11 | "vue-components", 12 | "tailwindcss", 13 | "tailwind-css", 14 | "alpinejs", 15 | "tailwindui", 16 | "tailwind-ui", 17 | "tailwind-blocks", 18 | "css", 19 | "html", 20 | "template", 21 | "components", 22 | "ui", 23 | "landing-page", 24 | "blocks", 25 | "free", 26 | "tailgrids", 27 | "tailwind-ui", 28 | "vuejs", 29 | "reactjs", 30 | "frontend", 31 | "web-development", 32 | "responsive-design", 33 | "design-system", 34 | "ui-kit", 35 | "vue-ui", 36 | "react-ui", 37 | "javascript", 38 | "frontend-components", 39 | "design-library", 40 | "ui-library", 41 | "web-components", 42 | "headless-ui", 43 | "vue", 44 | "react", 45 | "single-page-applications", 46 | "spa", 47 | "high-performance", 48 | "reusable-components", 49 | "vue-templates", 50 | "react-templates", 51 | "tailwind-css-sections", 52 | "tailgrids", 53 | "flowbite", 54 | "daisyui" 55 | ], 56 | "author": "TailGrids Team (https://tailgrids.com/)", 57 | "homepage": "https://tailgrids.com/", 58 | "description": "Handcrafted Library of Tailwind CSS UI Components & Blocks for HTML, React and Vue.", 59 | "bugs": "https://github.com/TailGrids/tailwind-ui-components/issues", 60 | "scripts": { 61 | "build-css": "npx @tailwindcss/cli -i ./src/tailwind.css -o ./assets/css/tailwind.css -w" 62 | }, 63 | "devDependencies": { 64 | "@tailwindcss/postcss": "^4.0.9", 65 | "postcss": "^8.4.38", 66 | "prettier": "^3.2.5", 67 | "prettier-plugin-tailwindcss": "^0.6.11", 68 | "tailgrids": "^2.2.5", 69 | "tailwindcss": "^4.0.9" 70 | }, 71 | "repository": { 72 | "type": "git", 73 | "url": "https://github.com/TailGrids/tailwind-ui-components" 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | '@tailwindcss/postcss': {}, 4 | }, 5 | }; 6 | --------------------------------------------------------------------------------