@@ -48,48 +48,42 @@ onMounted(() => {
48
48
:href =" route('dashboard')"
49
49
:active =" route().current('dashboard')"
50
50
>
51
- Dashboard
51
+ < i class = " fas fa-tachometer-alt mr-2 " ></ i > Dashboard
52
52
</NavLink >
53
53
54
54
<NavLink
55
55
:href =" route('transcriptions.index')"
56
- :active ="
57
- route().current('transcriptions.index')
58
- "
56
+ :active =" route().current('transcriptions.index')"
59
57
>
60
- Transcriptions
58
+ < i class = " fas fa-file-alt mr-2 " ></ i > Transcriptions
61
59
</NavLink >
62
60
63
61
<NavLink
64
62
:href =" route('translations.index')"
65
- :active ="
66
- route().current('translations.index')
67
- "
63
+ :active =" route().current('translations.index')"
68
64
>
69
- Translations
65
+ < i class = " fas fa-language mr-2 " ></ i > Translations
70
66
</NavLink >
71
67
72
68
<NavLink
73
69
:href =" route('speech_audios.index')"
74
- :active ="
75
- route().current('speech_audios.index')
76
- "
70
+ :active =" route().current('speech_audios.index')"
77
71
>
78
- Speech_Audios
72
+ < i class = " fas fa-microphone-alt mr-2 " ></ i > Speech Audios
79
73
</NavLink >
80
74
81
75
<NavLink
82
76
:href =" route('images.index')"
83
77
:active =" route().current('images.index')"
84
78
>
85
- Images
79
+ < i class = " fas fa-image mr-2 " ></ i > Images
86
80
</NavLink >
87
81
88
82
<NavLink
89
83
:href =" route('chatbot.index')"
90
84
:active =" route().current('chatbot.index')"
91
85
>
92
- ChatBot
86
+ < i class = " fas fa-comments mr-2 " ></ i > ChatBot
93
87
</NavLink >
94
88
</div >
95
89
</div >
@@ -105,36 +99,19 @@ onMounted(() => {
105
99
type =" button"
106
100
class =" inline-flex items-center rounded-md border border-transparent bg-white px-3 py-2 text-sm font-medium leading-4 text-gray-500 transition duration-150 ease-in-out hover:text-gray-700 focus:outline-none dark:bg-gray-800 dark:text-gray-400 dark:hover:text-gray-300"
107
101
>
102
+ <i class =" fas fa-user mr-2" ></i >
108
103
{{ $page.props.auth.user.name }}
109
-
110
- <svg
111
- class =" -me-0.5 ms-2 h-4 w-4"
112
- xmlns =" http://www.w3.org/2000/svg"
113
- viewBox =" 0 0 20 20"
114
- fill =" currentColor"
115
- >
116
- <path
117
- fill-rule =" evenodd"
118
- d =" M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
119
- clip-rule =" evenodd"
120
- />
121
- </svg >
104
+ <i class =" fas fa-chevron-down ms-2" ></i >
122
105
</button >
123
106
</span >
124
107
</template >
125
108
126
109
<template #content >
127
- <DropdownLink
128
- :href =" route('profile.edit')"
129
- >
130
- Profile
110
+ <DropdownLink :href =" route('profile.edit')" >
111
+ <i class =" fas fa-user mr-2" ></i > Profile
131
112
</DropdownLink >
132
- <DropdownLink
133
- :href =" route('logout')"
134
- method =" post"
135
- as =" button"
136
- >
137
- Log Out
113
+ <DropdownLink :href =" route('logout')" method =" post" as =" button" >
114
+ <i class =" fas fa-sign-out-alt mr-2" ></i > Log Out
138
115
</DropdownLink >
139
116
</template >
140
117
</Dropdown >
@@ -197,42 +174,42 @@ onMounted(() => {
197
174
:href =" route('dashboard')"
198
175
:active =" route().current('dashboard')"
199
176
>
200
- Dashboard
177
+ < i class = " fas fa-tachometer-alt mr-2 " ></ i > Dashboard
201
178
</ResponsiveNavLink >
202
179
203
180
<ResponsiveNavLink
204
181
:href =" route('transcriptions.index')"
205
182
:active =" route().current('transcriptions.index')"
206
183
>
207
- Transcriptions
184
+ < i class = " fas fa-file-alt mr-2 " ></ i > Transcriptions
208
185
</ResponsiveNavLink >
209
186
210
187
<ResponsiveNavLink
211
188
:href =" route('translations.index')"
212
189
:active =" route().current('translations.index')"
213
190
>
214
- Translations
191
+ < i class = " fas fa-language mr-2 " ></ i > Translations
215
192
</ResponsiveNavLink >
216
193
217
194
<ResponsiveNavLink
218
195
:href =" route('speech_audios.index')"
219
196
:active =" route().current('speech_audios.index')"
220
197
>
221
- Speech_Audios
198
+ < i class = " fas fa-microphone-alt mr-2 " ></ i > Speech Audios
222
199
</ResponsiveNavLink >
223
200
224
201
<ResponsiveNavLink
225
202
:href =" route('images.index')"
226
203
:active =" route().current('images.index')"
227
204
>
228
- Images
205
+ < i class = " fas fa-image mr-2 " ></ i > Images
229
206
</ResponsiveNavLink >
230
207
231
208
<ResponsiveNavLink
232
209
:href =" route('chatbot.index')"
233
210
:active =" route().current('chatbot.index')"
234
211
>
235
- ChatBot
212
+ < i class = " fas fa-comments mr-2 " ></ i > ChatBot
236
213
</ResponsiveNavLink >
237
214
</div >
238
215
0 commit comments