File tree Expand file tree Collapse file tree 3 files changed +18
-17
lines changed Expand file tree Collapse file tree 3 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 90
90
</div >
91
91
92
92
<div class =" mt-6 pb-4 sm:pb-1" >
93
- <button
93
+ <Button
94
+ title =" Send Request"
94
95
class =" px-4
95
96
sm:px-6
96
97
py-2
104
105
focus:ring-1 focus:ring-indigo-900"
105
106
type =" submit"
106
107
aria-label =" Submit Request"
107
- >
108
- Send Request
109
- </button >
108
+ />
110
109
</div >
111
110
</form >
112
111
</div >
113
112
<div
114
113
class =" modal-footer mt-2 sm:mt-0 py-5 px-8 border0-t text-right"
115
114
>
116
- <button
115
+ <Button
116
+ title =" Close"
117
117
class =" px-4
118
118
sm:px-6
119
119
py-2 bg-gray-600 text-primary-light hover:bg-ternary-dark dark:bg-gray-200 dark:text-secondary-dark dark:hover:bg-primary-light
123
123
focus:ring-1 focus:ring-indigo-900"
124
124
@click =" showModal()"
125
125
aria-label =" Close Modal"
126
- >
127
- Close
128
- </button >
126
+ />
129
127
</div >
130
128
</div >
131
129
</div >
137
135
138
136
<script >
139
137
import feather from ' feather-icons' ;
138
+ import Button from ' ./reusable/Button.vue' ;
140
139
export default {
141
140
props: [' showModal' , ' modal' , ' categories' ],
141
+ components: { Button },
142
142
data () {
143
143
return {};
144
144
},
Original file line number Diff line number Diff line change 76
76
</div >
77
77
78
78
<div class =" mt-6" >
79
- <button
79
+ <Button
80
+ title =" Send Message"
80
81
class =" font-general-medium px-4 py-2.5 text-white font-medium tracking-wider bg-indigo-500 hover:bg-indigo-600 focus:ring-1 focus:ring-indigo-900 rounded-lg"
81
82
type =" submit"
82
83
aria-label =" Send Message"
83
- >
84
- Send Message
85
- </button >
84
+ />
86
85
</div >
87
86
</form >
88
87
</div >
89
88
</div >
90
89
</template >
91
90
92
91
<script >
93
- export default {};
92
+ import Button from ' ../reusable/Button.vue' ;
93
+ export default { components: { Button } };
94
94
</script >
95
95
96
96
<style lang="scss" scoped></style >
Original file line number Diff line number Diff line change 69
69
>
70
70
<!-- Hire me button -->
71
71
<div class =" hidden md:block" >
72
- <button
72
+ <Button
73
+ title =" Hire Me"
73
74
class =" text-md font-general-medium bg-indigo-500 hover:bg-indigo-600 text-white shadow-sm rounded-md px-5 py-2.5"
74
75
@click =" showModal()"
75
76
aria-label =" Hire Me Button"
76
- >
77
- Hire Me
78
- </button >
77
+ />
79
78
</div >
80
79
81
80
<!-- Theme switcher large screen -->
@@ -102,12 +101,14 @@ import ThemeSwitcher from '../ThemeSwitcher';
102
101
import HireMeModal from ' ../HireMeModal.vue' ;
103
102
import feather from ' feather-icons' ;
104
103
import AppHeaderLinks from ' ./AppHeaderLinks.vue' ;
104
+ import Button from ' ../reusable/Button.vue' ;
105
105
106
106
export default {
107
107
components: {
108
108
ThemeSwitcher,
109
109
HireMeModal,
110
110
AppHeaderLinks,
111
+ Button,
111
112
},
112
113
data () {
113
114
return {
You can’t perform that action at this time.
0 commit comments