Skip to content

Commit 1fefce8

Browse files
Merge PR #9
Update <head>
2 parents a3bb500 + c62d55a commit 1fefce8

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

33
return [
4-
'APP_VERSION' => '1.5.5',
4+
'APP_VERSION' => '1.5.6',
55
'BRAND_NAME' => 'mtex.dev',
66
];

index.php

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,30 @@
3131
<head>
3232
<meta charset="UTF-8" />
3333
<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+
3558
<script src="https://cdn.tailwindcss.com"></script>
3659
<script>
3760
tailwind.config = {
@@ -63,9 +86,22 @@
6386
<style>
6487
.bg-dots { background-image: radial-gradient(#e5e7eb 1px, transparent 1px); background-size: 20px 20px; }
6588
.dark .bg-dots { background-image: radial-gradient(#334155 1px, transparent 1px); }
89+
6690
.sidebar-scroll::-webkit-scrollbar { width: 4px; }
6791
.sidebar-scroll::-webkit-scrollbar-track { background: transparent; }
6892
.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; }
69105
</style>
70106
</head>
71107
<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

Comments
 (0)