├── .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 |33 | The page you are looking for it maybe deleted 34 |
35 | 39 | Go To Home 40 | 41 |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 |24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 25 | ultrices lectus sem. 26 |
27 |24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 25 | ultrices lectus sem. 26 |
27 |23 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 24 | ultrices lectus sem. 25 |
26 |36 | Lorem ipsum dolor sit amet, consectetur adipiscing elit ante. 37 |
38 |24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras 25 | ultrices lectus sem. 26 |
27 |44 | Page 1 to 10 45 |
46 |30 | We have launched Brand new Blocks featuring over 300+ UI Elements! 31 |
32 | 36 | Check Out 37 | 38 | 50 | 51 | 52 | 53 | 79 |39 | 500+ Tailwind CSS UI Components, Blocks and Templates Collections 40 |
41 |25 | On Sale For A Very Limited Time! 26 | Get it now→ 27 |
28 | 29 | 55 |23 | Flat 70% Discount, Hurry Up to Grab the Deal! Sale ends in 24 |
25 |60 | Purchased polo t-shirt for man 61 |
62 | 63 | 2 min ago 64 | 65 |29 | Started following your 30 |
31 |40 | Message sent successfully 41 |
42 | 65 |26 | And because your company is unique, you will need an 27 | extensible identity solution. 28 |
29 |58 | You will receive every news and pro tips. 59 |
60 |28 | Customers visit Omega every month to get their service done. 29 |
30 |41 | Satisfaction rate comes from our awesome customers. 42 |
43 |54 | Average Award we have got all over internet. 55 |
56 |