| Philip Zeyliger | 254c49f | 2025-07-17 17:26:24 -0700 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8" /> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | <title>Push Button Demo</title> |
| 7 | <script src="https://cdn.tailwindcss.com"></script> |
| 8 | <style> |
| 9 | body { |
| 10 | font-family: |
| 11 | -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; |
| 12 | margin: 0; |
| 13 | padding: 20px; |
| 14 | background-color: #f9fafb; |
| 15 | } |
| 16 | </style> |
| 17 | </head> |
| 18 | <body> |
| 19 | <div class="max-w-4xl mx-auto"> |
| 20 | <h1 class="text-2xl font-bold mb-8 text-gray-800"> |
| 21 | Push Button Component Demo |
| 22 | </h1> |
| 23 | |
| 24 | <div class="bg-white rounded-lg shadow-lg p-6"> |
| 25 | <sketch-push-button-demo></sketch-push-button-demo> |
| 26 | </div> |
| 27 | </div> |
| 28 | |
| 29 | <script type="module" src="./sketch-push-button.demo.ts"></script> |
| 30 | </body> |
| 31 | </html> |