├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── build │ └── tailwind.css ├── dentalpro │ ├── book-appointment.html │ ├── images │ │ ├── cover-bg.jpeg │ │ ├── oral-surgery.svg │ │ ├── painless-dentistry.svg │ │ ├── periodontics.svg │ │ └── teeth-whitening.svg │ └── index.html ├── fair-rate-mortgage │ ├── images │ │ ├── icon-home-1.svg │ │ ├── icon-home-2.svg │ │ ├── icon-home-3.svg │ │ └── rates.png │ └── index.html ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── images │ └── abstract-ui-logo.svg ├── index.html ├── login-demo │ └── index.html ├── marketplace │ ├── dashboard.html │ └── distribution.html ├── old.html ├── order-history │ └── index.html ├── tailwind.css └── templates-covers │ ├── dentalpro-cover.png │ └── fair-rate-cover.png └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["bradlc.vscode-tailwindcss"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tailwind CSS Templates 2 | 3 | **Care-fully crafted landing pages & dashboard UI examples to energize your creative development workflow using Tailwind CSS.** 4 | 5 | **View live demos, https://tailwindcss-templates.netlify.com/** 6 | 7 | Feel free to download these templates for your personal and commercial projects. All templates are responsive in design and premium in quality, and yes it’s 100% free to download. 8 | 9 | To get started: 10 | 11 | 1. Clone the repository: 12 | 13 | ```bash 14 | git clone https://github.com/iamsahilvhora/tailwindcss-templates.git 15 | ``` 16 | 17 | 2. Install the dependencies: 18 | 19 | ```bash 20 | # Using npm 21 | npm install 22 | ``` 23 | 24 | 3. Start the development server: 25 | 26 | ```bash 27 | # Using npm 28 | npm run serve 29 | ``` 30 | 31 | Now you should be able to see the project running at localhost:8080. 32 | 33 | 4. Open `public/index.html` in your editor and start experimenting! 34 | 35 | ## Building for production 36 | 37 | ```bash 38 | # Using npm 39 | npm run production 40 | ``` 41 | 42 | After that's done, check out `./public/build/tailwind.css` to see the optimized output. 43 | 44 | ## About Tailwind CSS 45 | A utility-first CSS framework for rapidly building custom user interfaces. 46 | For full documentation, visit https://tailwindcss.com/ 47 | 48 | ## Roadmap 49 | The following features will be implemented at the next versions: 50 | * Components library 51 | * Premium templates 52 | 53 | ## License 54 | Licensed under the [MIT License](https://opensource.org/licenses/MIT). 55 | 56 | ## Support 57 | Please use the GitHub issues for support requests. If you need someone to develop your site in Tailwind CSS for you, hit me up at [iamsahilvhora@gmail.com](mailto:iamsahilvhora@gmail.com) 58 | 59 | ## Changelog 60 | **1.0.1** 61 | First public version 62 | 63 | ## Tell me what you've created 64 | Ping me on [Twitter](https://twitter.com/iamsahilvhora). I'd definitely love to see what you've done with Tailwind CSS! 65 | 66 | ## Author 67 | Crafted with ❤️ by **Sahil Vhora**, Freelance Full-stack Designer 68 | 69 | Follow me on Twitter, [@iamsahilvhora](https://twitter.com/iamsahilvhora) 70 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "serve": "cross-env NODE_ENV=development concurrently \"postcss public/tailwind.css -o public/build/tailwind.css --watch\" \"live-server ./public\"", 4 | "development": "cross-env NODE_ENV=development postcss public/tailwind.css -o public/build/tailwind.css", 5 | "production": "cross-env NODE_ENV=production postcss public/tailwind.css -o public/build/tailwind.css" 6 | }, 7 | "dependencies": { 8 | "autoprefixer": "^9.5.1", 9 | "tailwindcss": "^1.1" 10 | }, 11 | "devDependencies": { 12 | "@fullhuman/postcss-purgecss": "^1.2.0", 13 | "concurrently": "^4.1.0", 14 | "cross-env": "^5.2.0", 15 | "cssnano": "^4.1.10", 16 | "live-server": "^1.2.1", 17 | "postcss-cli": "^6.1.2" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | const purgecss = require('@fullhuman/postcss-purgecss')({ 2 | content: ['./public/**/*.html'], 3 | defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || [] 4 | }) 5 | 6 | module.exports = { 7 | plugins: [ 8 | require('tailwindcss'), 9 | require('autoprefixer'), 10 | ...process.env.NODE_ENV === 'production' 11 | ? [purgecss, require('cssnano')] 12 | : [] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/dentalpro/book-appointment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Book Appointment | DentalPro 12 | 13 | 14 | 15 | 16 | 17 |
18 |
19 | 20 |
22 | 23 |
24 | 25 | 26 | DentalPro 27 | 28 | 29 |

Book your appointment with DentalPro in 2 30 | minutes

31 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed molestie metus 32 | turpis. Vivamus mollis diam 33 | quis erat tincidunt.

34 | 35 |
36 |
37 | 38 | 41 |
42 | 43 |
44 |
45 | 46 | 49 |
50 | 51 |
52 | 53 |
54 | 59 | 60 |
61 | 62 | 63 |
64 |
65 |
66 |
67 | 68 |
69 | 70 | 73 |
74 | 75 | 77 |
78 | 79 |

© 2019 DentalPro - All Rights Reserved.

80 |
81 |
82 | 83 | 88 | 89 |
90 | 91 |
92 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /public/dentalpro/images/cover-bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/dentalpro/images/cover-bg.jpeg -------------------------------------------------------------------------------- /public/dentalpro/images/oral-surgery.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/dentalpro/images/painless-dentistry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/dentalpro/images/periodontics.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/dentalpro/images/teeth-whitening.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/dentalpro/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | DentalPro 13 | 14 | 89 | 90 | 91 | 92 | 93 |
94 | 95 | 96 |
97 | 169 | 170 |
171 | 176 | 177 | 182 | 183 | 184 | 185 | 206 |
207 |
208 | 209 | 210 | 211 |
212 |
214 |
215 | 216 |
217 | 218 |
219 |
220 |

A better life starts with a beautiful 221 | smile.

222 |

Welcome to the Dentist Office of Dr. Thomas 223 | Dooley, 224 | where 225 | trust 226 | and comfort are priorities.

227 | Book 228 | Appointment 229 |
230 |
231 |
232 |
233 | 234 | 235 | 236 |
237 |
238 |
239 |
Our clinic
240 |

Welcome to the Dentist Office of Dr. Thomas Dooley

241 |

Excellence in Dentistry in the Heart of NY

242 |

Donec convallis sollicitudin facilisis. Integer nisl ligula, accumsan non 243 | tincidunt ac, imperdiet in enim. 244 | Donec efficitur ullamcorper metus, eu venenatis nunc. Nam eget neque tempus, mollis sem a, faucibus mi.

245 |
246 | 247 |
248 |
249 |
250 |
251 |
252 |
253 |

Everything You Need Under One Roof

254 |

Our comprehensive services allow you to receive all needed dental care 255 | right here in our state-of-art 256 | office – from dental cleanings and fillings to dental implants and extractions.

257 |
258 |
259 | 260 |
261 |
262 |
263 |
264 |
265 |

Our Patient-Focused Approach

266 |

Your treatment plan will perfectly match your needs, lifestyle, and goals. 267 | Even if it’s been years 268 | since you last visited the dentist, we can help. Our comfortable office, compassionate team, and 269 | minimally-invasive treatments will help you feel completely at ease.

270 |
271 |
272 |
273 |
274 | 275 |
276 |
277 | 278 | 279 | 282 | 283 |

Teeth Whitening

284 |

Let us show you how our experience.

285 | Read More 286 |
287 | 288 |
289 | 290 | 291 | 294 | 295 |

Oral Surgery

296 |

Let us show you how our experience.

297 | Read More 298 |
299 | 300 |
301 | 302 | 303 | 306 | 307 |

Painless Dentistry

308 |

Let us show you how our experience.

309 | Read More 310 |
311 | 312 |
313 | 314 | 315 | 318 | 319 |

Periodontics

320 |

Let us show you how our experience.

321 | Read More 322 |
323 |
324 |
325 | 326 | 327 | 328 |
329 |
330 |
331 |
Patient testimonials
332 |

Why choose the Mesothelioma Center?

333 |

Aenean ut tellus tellus. Suspendisse potenti. Nullam tincidunt lacus tellus, 334 | sed aliquam est vehicula a. Pellentesque consectetur condimentum nulla, eleifend condimentum purus vehicula 335 | in. Donec convallis sollicitudin facilisis. Integer nisl ligula, accumsan non tincidunt ac, imperdiet in 336 | enim. Donec efficitur ullamcorper metus, eu venenatis nunc. Nam eget neque tempus, mollis sem a, faucibus 337 | mi.

338 |
339 | 340 |
341 |
342 | 343 |

Aenean ante nisi, gravida non mattis semper.

344 |
345 |
346 |
347 | 348 | 349 | 350 |
351 |
352 |

Get in touch with us today! Call us on: +1 562-789-1935

353 | Book Appointment 354 |
355 |
356 | 357 | 358 | 359 | 499 | 500 | 501 |
502 | 503 | 504 | 505 | 506 | 516 | 517 | 518 | 519 | -------------------------------------------------------------------------------- /public/fair-rate-mortgage/images/icon-home-1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fair-rate-mortgage/images/icon-home-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fair-rate-mortgage/images/icon-home-3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fair-rate-mortgage/images/rates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/fair-rate-mortgage/images/rates.png -------------------------------------------------------------------------------- /public/fair-rate-mortgage/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | FairRate 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 55 | 56 | 57 | 58 |
60 |
61 |
62 |

Fair Rate lets you find the fairrest 63 | rate.

64 |

Fusce dapibus, tellus ac cursus commodo, tortor mauris 65 | condimentum nibh, ut fermentum massa justo sit amet risus.

66 | Find the Fair Rate 67 |
68 | 69 |
70 | 72 | 73 | 74 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 140 | 141 | 142 | 143 | 146 | 147 | 148 | 149 | 152 | 153 | 154 | 155 | 158 | 159 | 160 | 161 | 164 | 165 | 166 | 167 | 170 | 171 | 172 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 226 | 227 | 230 | 231 | 232 | 233 | 236 | 237 | 240 | 241 | 242 | 243 | 246 | 247 | 250 | 251 | 252 | 253 | 256 | 257 | 260 | 261 | 262 | 263 | 265 | 266 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 333 | 334 | 337 | 338 | 339 | 340 | 343 | 344 | 347 | 348 | 349 | 352 | 354 | 356 | 358 | 359 | 362 | 363 | 366 | 367 | 368 | 369 | 372 | 373 | 376 | 377 | 378 | 379 | 382 | 383 | 386 | 387 | 388 | 389 | 392 | 393 | 396 | 397 | 398 | 401 | 403 | 405 | 407 | 409 | 411 | 413 | 414 | 415 | 416 | 417 | 418 | 421 | 25% 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 432 | 30% 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 443 | 12% 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 454 | 18% 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 465 | 12% 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 475 | 10% 476 | 477 | 478 | 479 | 480 |
481 |
482 |
483 | 484 | 485 | 486 |
487 |
488 |

How FairRate works you ask?

489 |
490 | 491 |
492 |
493 | 494 |

Apply with your home

495 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

496 |
497 | 498 |
499 | 500 |

Complete the form

501 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

502 |
503 | 504 |
505 | 506 |

Choose the fair rate

507 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

508 |
509 |
510 | 511 |
512 |

“FairRate is beautiful, elegant and easy to apply. I’ve been able to apply for an 513 | amazing rate in just a minutes. Thank you very much for creating this impressive service!”

514 |

Valeria Boltneva

515 |

Director of Adrian Stefan.Inc

516 |
517 |
518 | 519 | 520 | 521 |
522 |
523 |

Looking for the perfect rate for your home?

524 |
525 | 526 |
527 |
528 | 529 |
530 | 531 |
532 |

Stop Looking

533 |

Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut 534 | fermentum massa justo sit amet risus. Praesent commodo cursus magna.

535 | 536 |
    537 |
  • 538 |
    539 | 540 | 543 | Integer posuere erat a ante venenatis dapibus 544 |
    545 |
  • 546 |
  • 547 |
    548 | 549 | 552 | Integer posuere erat a ante venenatis dapibus 553 |
    554 |
  • 555 |
556 | 557 | Find the Fair Rate 558 |
559 |
560 |
561 | 562 | 563 | 564 |
565 |
566 |
567 |

Need help?

568 |

Contact our Customer Support that is always ready to help you with any possible questions, problems or 569 | information.

570 |
571 | 572 |
573 | Go to Support 574 |
575 |
576 |
577 | 578 | 579 | 580 | 629 | 630 | 631 |
632 | 633 | 635 | 636 | 658 | 659 | 660 | 661 | 671 | 672 | 673 | 674 | 675 | -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/favicon.ico -------------------------------------------------------------------------------- /public/images/abstract-ui-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Tailwind CSS Templates 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 |
25 |

Tailwind CSS Templates is now AbstractUI. Visit Website: https://abstractui.com/

28 |
29 | 30 |
31 |
32 | Abstract UI 33 | 34 |

Curated design resources to energize 35 | your creative workflow.

36 |

Create awesome projects faster and accurately 37 | with wireframes, iOS and Android templates made by Sahil Vhora

40 | 41 | View Website 43 |
44 |
45 | 46 |
47 | 48 | 49 | 50 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /public/login-demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Login Demo 12 | 13 | 14 | 15 | 16 | 17 |
18 |
19 | 20 | 23 | 24 |
26 | 27 |
28 | 29 |

CompanyName

30 | 31 |

Log in to your account

32 | 33 |
34 |
35 | 36 | 38 |
39 | 40 |
41 | 42 | 44 |
45 | 46 |
47 | Forgot Password? 48 |
49 | 50 | 53 |
54 | 55 |
56 | 57 | 67 | 68 |

Need an account? Create an 69 | account

70 | 71 |

© 2019 Login Page Demo - All Rights Reserved.

72 |
73 |
74 | 75 |
76 | 77 |
78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /public/marketplace/dashboard.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Dashboard | Marketplace 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 |
25 | 33 |
34 |
35 | 36 |
37 |
38 | 39 | 48 |
49 |
50 |
51 | 52 |
53 |
54 |
55 | 56 |
57 |

Flyght Club

58 |

4.48 35,457 reviews #1 Finest Authentic 59 | Sneakers Store in Jakarta

60 |
61 |
62 | 63 |
64 |
65 | 75 |
76 | 77 |
78 |
79 |
80 |
81 |
82 |
83 |
85 | +3 86 |
87 |
88 | 89 | Invite 90 |
91 | Edit Marketplace 92 |
93 |
94 |
95 | 96 |
97 |
98 |
99 |
100 |
101 |
102 |

Weekly Revenue Overview

103 |

7 - 13 May, 2019

104 |
105 | 106 |
107 | Download Report 108 |
109 |
110 | 111 |
112 |
113 |

$74,729.00

114 |

+21% from last week

115 |

205 sales in the past 7 days

116 | 117 |
118 |
119 | 120 |
121 |

Highest revenue since 2 weeks ago

122 |
123 |
124 |
125 | 126 |
127 |
128 |
129 | 130 |
131 |
132 |
133 |

Top Items

134 |

Sorted based on comparison with yesterday sales

135 |
136 | 137 |
138 | See More Items 139 |
140 |
141 | 142 |
143 | 144 |
145 |
146 |
147 | 148 |
149 |
150 |

Weekly Revenue Overview

151 |

Observe and manage your next decisionfor your products properly

152 | 153 | Sync with Google Analytics 154 |
155 | 156 |
157 |

Shipping Performance

158 |

Calculated based on customer reviews

159 |
160 |
161 |
162 |
163 | 164 |
165 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /public/marketplace/distribution.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Distribution | Marketplace 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 |
25 | 33 |
34 |
35 | 36 |
37 |
38 | 39 | 48 |
49 |
50 |
51 | 52 |
53 |
54 |
55 | 56 |
57 |

Flyght Club

58 |

4.48 35,457 reviews #1 Finest Authentic 59 | Sneakers Store in Jakarta

60 |
61 |
62 | 63 |
64 |
65 | 74 |
75 | 76 |
77 |
78 |
79 |
80 |
81 |
82 |
84 | +3 85 |
86 |
87 | 88 | Invite 89 |
90 | Edit Marketplace 91 |
92 |
93 |
94 | 95 |
96 |
97 | 106 | 107 |
108 | 109 |
110 |
111 | 113 |
114 | 115 |
116 | 119 |
120 | 121 |
122 | 124 |
125 |
126 |
127 | 128 |
129 |
130 | Clear all filters 131 |
132 | 133 |
134 |

Showing 1 - 18 of 1302 total results

135 | 136 |
137 |
138 |
139 |
140 |
141 |
142 | 143 |
144 |
145 |
146 |
147 |
149 | In Progress
150 |
152 | #20183
153 |
154 | 155 |
156 |

May 14, 2019 @ 07:49 PM

157 |
158 |
159 |
160 | 161 |
162 |
163 |
164 | 165 |
166 |

Kickz

167 |

hi@kickz.com

168 |
169 |
170 | 171 |
172 |
173 |

Value of Items

174 |

$52,520

175 |
176 | 177 |
178 |

Quantity

179 |

20 pairs

180 |
181 | 182 |
183 |

Shipping Progress

184 |
185 |
186 |
Out for Delivery
187 |

3 days shipping

188 |
189 |
190 |
191 |
192 | 193 |
194 |
195 |
196 |
197 |

Person in Charge

198 |

Jonathan Kulo (You)

199 |
200 |
201 | 202 |
203 | Details 204 |
205 |
206 |
207 | 208 |
209 |
210 |
211 |
213 | In Progress
214 |
216 | #20183
217 |
218 | 219 |
220 |

May 14, 2019 @ 07:49 PM

221 |
222 |
223 |
224 | 225 |
226 |
227 |
228 | 229 |
230 |

Kickz

231 |

hi@kickz.com

232 |
233 |
234 | 235 |
236 |
237 |

Value of Items

238 |

$52,520

239 |
240 | 241 |
242 |

Quantity

243 |

20 pairs

244 |
245 | 246 |
247 |

Shipping Progress

248 |
249 |
250 |
Out for Delivery
251 |

3 days shipping

252 |
253 |
254 |
255 |
256 | 257 |
258 |
259 |
260 |
261 |

Person in Charge

262 |

Jonathan Kulo (You)

263 |
264 |
265 | 266 |
267 | Details 268 |
269 |
270 |
271 |
272 |
273 | 274 |
275 | 276 | 277 | 278 | -------------------------------------------------------------------------------- /public/old.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Tailwind CSS Templates 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 |
27 | 49 |
50 | 51 | 52 | 53 |
54 |
55 |

Care-fully crafted landing pages & dashboard UI 56 | examples to 57 | energize your 58 | creative development 59 | workflow using 60 | Tailwind CSS.

61 |

Feel free to download these templates for your personal and commercial 62 | projects. 63 | All templates are responsive 64 | in design and premium in quality, and yes it’s 100% free to download.

65 | 66 | 68 |
69 | 70 | 72 | 73 | View on Github 74 |
75 |
76 |
77 |
78 | 79 | 80 | 81 |
82 |
83 |
Featured Templates
84 | 85 |
86 |
87 |
88 | 89 |
90 | 91 |
92 |
93 |
94 |

Fair Rate Mortgage

95 |

Added on: 15 Jun, 2019

96 |
97 | #landing-page 99 |
100 | Live 102 | Preview 103 |
104 |
105 | 106 |
107 |
108 | 109 |
110 | 111 |
112 |
113 |
114 |

DentalPro

115 |

Added On: 23 Jun, 2019

116 |
117 | #landing-page 119 |
120 | Live 122 | Preview 123 | 124 | GitHub 126 | Repo 127 |
128 |
129 |
130 |
131 |
132 | 133 | 134 | 185 | 186 | 187 |
188 | 189 | 190 | 191 | 201 | 202 | 203 | 204 | 205 | -------------------------------------------------------------------------------- /public/order-history/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Order History 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 |
27 | 28 |

CompanyLogo

29 |
30 | 31 | 43 |
44 |
45 | 46 |
47 |
48 | 94 | 95 |
96 |

Order History

97 | 98 |
99 |

Order Number: #21312352

100 | View Receipt 101 |
102 | 103 |
104 |
105 |

Placed on:

106 |

15 March, 2017

107 |
108 | 109 |
110 |

Shipped To:

111 |

Jason Williams

112 |
113 | 114 |
115 |

Paid With:

116 |

Amex....9429

117 |
118 | 119 |
120 |

Total Charge:

121 |

$78.33

122 |
123 |
124 | 125 |
126 |
127 |

You have 3 refunds on this order.

128 | 129 |
130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 |
Lundberg Organic White RiceTax Refund $4.0015 March, 2017
Ocean Spray Juice Cocktail, Cranberry...Fully Refunded $6.7515 March, 2017
Mott's 100% Apple Juice, Original, 64 Fl Oz, 1 CtShipping Refund $6.7615 March, 2017
152 |
153 | 154 |
155 |
156 |

Delivered

157 |

Fulfilled by Name

158 |
159 | 160 |
161 | Return Items 162 | Track 163 | Package 164 |
165 |
166 | 167 |
168 |

Estimated Delivery: by Tuesday, 17 March

169 |

Charged for this shipment: $54.67 Details 170 |

171 |

Fex Ex Tracking: WNU050719041

172 |
173 | 174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |

Ocean Spray

182 |

Ocean Spray Juice Cocktail, Cranberry, 64 Fl Oz, 1 Ct

183 | 184 |
185 |

$2.73

186 | Details 187 |
188 |
189 |
190 |
191 | 192 |
193 |
194 |
195 |
196 |
197 |
198 |

Ocean Spray

199 |

Ocean Spray Juice Cocktail, Cranberry, 64 Fl Oz, 1 200 | Ct

201 | 202 |
203 |

$2.73

204 | Details 205 |
206 |
207 |
208 |
209 |

Refund complete

210 |
211 |
212 |
213 |
214 |
215 |
216 | 217 |
218 | 219 | 220 | 221 | -------------------------------------------------------------------------------- /public/tailwind.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | a { 6 | transition: all .3s ease; 7 | } 8 | 9 | #navbar { 10 | transition: all .3s ease; 11 | } 12 | 13 | .navbar-toggler { 14 | margin-top: 4px; 15 | margin-bottom: 4px; 16 | width: 26px; 17 | height: 26px; 18 | padding: 2px 0; 19 | border: none; 20 | right: 15px; 21 | 22 | } 23 | 24 | .navbar-toggler:focus { 25 | outline: none; 26 | } 27 | 28 | .navbar-toggler .navbar-toggler-bar { 29 | display: block; 30 | width: 26px; 31 | height: 2px; 32 | background-color: #05004d; 33 | -webkit-transition: all .2s ease-in-out 0s; 34 | -o-transition: all .2s ease-in-out 0s; 35 | transition: all .2s ease-in-out 0s; 36 | border-radius: 4px; 37 | margin-bottom: 5px 38 | } 39 | 40 | .navbar-toggler .navbar-toggler-bar:last-child { 41 | margin-bottom: 0 42 | } 43 | 44 | .navbar-toggler.active .navbar-toggler-bar:nth-child(1) { 45 | -webkit-transform: rotate(45deg); 46 | -ms-transform: rotate(45deg); 47 | transform: rotate(45deg); 48 | position: relative; 49 | top: 7px 50 | } 51 | 52 | .navbar-toggler.active .navbar-toggler-bar:nth-child(2) { 53 | opacity: 0 54 | } 55 | 56 | .navbar-toggler.active .navbar-toggler-bar:nth-child(3) { 57 | -webkit-transform: rotate(-45deg); 58 | -ms-transform: rotate(-45deg); 59 | transform: rotate(-45deg); 60 | position: relative; 61 | bottom: 7px 62 | } -------------------------------------------------------------------------------- /public/templates-covers/dentalpro-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/templates-covers/dentalpro-cover.png -------------------------------------------------------------------------------- /public/templates-covers/fair-rate-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsahilvhora/tailwindcss-templates/06ea7b3f388098859b8822fdf8218cf10b09acda/public/templates-covers/fair-rate-cover.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | theme: { 3 | fontFamily: { 4 | 'sans': 'Inter' 5 | // 'sans': 'Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' 6 | }, 7 | opacity: { 8 | '0': '0', 9 | '10': '.1', 10 | '20': '.2', 11 | '30': '.3', 12 | '40': '.4', 13 | '50': '.5', 14 | '60': '.6', 15 | '70': '.7', 16 | '80': '.8', 17 | '90': '.9', 18 | '100': '1', 19 | }, 20 | extend: { 21 | spacing: { 22 | '72': '18rem', 23 | '84': '21rem', 24 | '96': '24rem', 25 | }, 26 | screens: { 27 | '2xl': '1600px', 28 | }, 29 | maxWidth: theme => { 30 | return { 31 | 'screen-2xl': theme('screens.2xl'), 32 | } 33 | }, 34 | }, 35 | }, 36 | variants: { 37 | opacity: ['responsive', 'hover', 'focus'], 38 | }, 39 | plugins: [], 40 | } --------------------------------------------------------------------------------