|
31 | 31 | <head> |
32 | 32 | <meta charset="UTF-8" /> |
33 | 33 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
34 | | - <title><?= $config['BRAND_NAME'] ?> // Component Library</title> |
| 34 | + |
| 35 | + <title><?= $config['BRAND_NAME'] ?> // TailwindCSS Component Library</title> |
| 36 | + <meta name="title" content="<?= $config['BRAND_NAME'] ?> // Component Library"> |
| 37 | + <meta name="description" content="An internal ecosystem of high-quality, copy-paste TailwindCSS components designed for MTEX projects. Built for speed, consistency, and dark-mode excellence."> |
| 38 | + <meta name="keywords" content="TailwindCSS, UI Kit, Component Library, MTEX, Web Development, PHP, Design System"> |
| 39 | + <meta name="author" content="MTEDdotDev"> |
| 40 | + |
| 41 | + <meta property="og:type" content="website"> |
| 42 | + <meta property="og:url" content="https://tw.mtex.dev/"> |
| 43 | + <meta property="og:title" content="<?= $config['BRAND_NAME'] ?> // Component Library"> |
| 44 | + <meta property="og:description" content="Rapid UI development with the MTEX TailwindCSS component ecosystem."> |
| 45 | + <meta property="og:image" content="https://github.com/MTEDdotDev.png"> |
| 46 | + |
| 47 | + <meta property="twitter:card" content="summary"> |
| 48 | + <meta property="twitter:url" content="https://tw.mtex.dev/"> |
| 49 | + <meta property="twitter:title" content="<?= $config['BRAND_NAME'] ?> // Component Library"> |
| 50 | + <meta property="twitter:description" content="Rapid UI development with the MTEX TailwindCSS component ecosystem."> |
| 51 | + <meta property="twitter:image" content="https://github.com/MTEDdotDev.png"> |
| 52 | + |
| 53 | + <link rel="icon" type="image/x-icon" href="https://github.com/MTEDdotDev.png"> |
| 54 | + <link rel="apple-touch-icon" href="https://github.com/MTEDdotDev.png"> |
| 55 | + <meta name="theme-color" content="#020617"> |
| 56 | + <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
| 57 | + |
35 | 58 | <script src="https://cdn.tailwindcss.com"></script> |
36 | 59 | <script> |
37 | 60 | tailwind.config = { |
|
63 | 86 | <style> |
64 | 87 | .bg-dots { background-image: radial-gradient(#e5e7eb 1px, transparent 1px); background-size: 20px 20px; } |
65 | 88 | .dark .bg-dots { background-image: radial-gradient(#334155 1px, transparent 1px); } |
| 89 | + |
66 | 90 | .sidebar-scroll::-webkit-scrollbar { width: 4px; } |
67 | 91 | .sidebar-scroll::-webkit-scrollbar-track { background: transparent; } |
68 | 92 | .sidebar-scroll::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 20px; } |
| 93 | + .dark .sidebar-scroll::-webkit-scrollbar-thumb { background-color: #1e293b; } |
| 94 | + |
| 95 | + ::-webkit-scrollbar { width: 10px; } |
| 96 | + ::-webkit-scrollbar-track { background: transparent; } |
| 97 | + ::-webkit-scrollbar-thumb { |
| 98 | + background-color: #e2e8f0; |
| 99 | + border-radius: 10px; |
| 100 | + border: 3px solid transparent; |
| 101 | + background-clip: content-box; |
| 102 | + } |
| 103 | + .dark ::-webkit-scrollbar-thumb { background-color: #1e293b; } |
| 104 | + ::-webkit-scrollbar-thumb:hover { background-color: #94a3b8; } |
69 | 105 | </style> |
70 | 106 | </head> |
71 | 107 | <body class="bg-white dark:bg-slate-950 text-slate-900 dark:text-slate-100 min-h-screen flex flex-col transition-colors duration-300"> |
|
0 commit comments