|
30 | 30 | <div class="hidden lg:flex lg:items-center lg:space-x-8"> |
31 | 31 | <NuxtLink |
32 | 32 | to="/docs" |
33 | | - class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors" |
| 33 | + class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors cursor-pointer" |
34 | 34 | :class="{ 'text-red-600 dark:text-red-400': $route.path.startsWith('/docs') }" |
35 | 35 | > |
36 | 36 | Documentation |
37 | 37 | </NuxtLink> |
38 | 38 |
|
39 | 39 | <NuxtLink |
40 | 40 | to="/templates" |
41 | | - class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors" |
| 41 | + class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors cursor-pointer" |
42 | 42 | :class="{ 'text-red-600 dark:text-red-400': $route.path.startsWith('/templates') }" |
43 | 43 | > |
44 | 44 | Templates |
45 | 45 | </NuxtLink> |
46 | 46 |
|
47 | 47 | <NuxtLink |
48 | 48 | to="/case-studies" |
49 | | - class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors" |
| 49 | + class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors cursor-pointer" |
50 | 50 | :class="{ 'text-red-600 dark:text-red-400': $route.path.startsWith('/case-studies') }" |
51 | 51 | > |
52 | 52 | Case Studies |
53 | 53 | </NuxtLink> |
54 | 54 |
|
55 | 55 | <NuxtLink |
56 | 56 | to="/community" |
57 | | - class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors" |
| 57 | + class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors cursor-pointer" |
58 | 58 | :class="{ 'text-red-600 dark:text-red-400': $route.path.startsWith('/community') }" |
59 | 59 | > |
60 | 60 | Community |
61 | 61 | </NuxtLink> |
62 | 62 |
|
63 | 63 | <NuxtLink |
64 | 64 | to="/playground" |
65 | | - class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors" |
| 65 | + class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors cursor-pointer" |
66 | 66 | :class="{ 'text-red-600 dark:text-red-400': $route.path.startsWith('/playground') }" |
67 | 67 | > |
68 | 68 | Playground |
|
104 | 104 | <NuxtLink |
105 | 105 | to="/docs" |
106 | 106 | @click="toggleMobileMenu" |
107 | | - class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors" |
| 107 | + class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors cursor-pointer" |
108 | 108 | :class="{ 'text-red-600 dark:text-red-400 bg-red-50 dark:bg-red-900/20': $route.path.startsWith('/docs') }" |
109 | 109 | > |
110 | 110 | Documentation |
|
113 | 113 | <NuxtLink |
114 | 114 | to="/templates" |
115 | 115 | @click="toggleMobileMenu" |
116 | | - class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors" |
| 116 | + class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors cursor-pointer" |
117 | 117 | :class="{ 'text-red-600 dark:text-red-400 bg-red-50 dark:bg-red-900/20': $route.path.startsWith('/templates') }" |
118 | 118 | > |
119 | 119 | Templates |
|
122 | 122 | <NuxtLink |
123 | 123 | to="/case-studies" |
124 | 124 | @click="toggleMobileMenu" |
125 | | - class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors" |
| 125 | + class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors cursor-pointer" |
126 | 126 | :class="{ 'text-red-600 dark:text-red-400 bg-red-50 dark:bg-red-900/20': $route.path.startsWith('/case-studies') }" |
127 | 127 | > |
128 | 128 | Case Studies |
|
131 | 131 | <NuxtLink |
132 | 132 | to="/community" |
133 | 133 | @click="toggleMobileMenu" |
134 | | - class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors" |
| 134 | + class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors cursor-pointer" |
135 | 135 | :class="{ 'text-red-600 dark:text-red-400 bg-red-50 dark:bg-red-900/20': $route.path.startsWith('/community') }" |
136 | 136 | > |
137 | 137 | Community |
|
140 | 140 | <NuxtLink |
141 | 141 | to="/playground" |
142 | 142 | @click="toggleMobileMenu" |
143 | | - class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors" |
| 143 | + class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors cursor-pointer" |
144 | 144 | :class="{ 'text-red-600 dark:text-red-400 bg-red-50 dark:bg-red-900/20': $route.path.startsWith('/playground') }" |
145 | 145 | > |
146 | 146 | Playground |
|
0 commit comments