SocialSharing.vue (424B)
1 <script> 2 export default { 3 name: 'SocialSharing', 4 }; 5 </script> 6 7 <template> 8 <div class="social-sharing"> 9 <p> 10 Made with ✨ by 11 <a href="https://georgefrancis.dev/" target="_blank" 12 >George Francis</a 13 > 14 </p> 15 </div> 16 </template> 17 18 <style scoped> 19 .social-sharing { 20 display: flex; 21 } 22 23 p { 24 font-weight: 700; 25 } 26 27 p a { 28 color: #4d3df7; 29 } 30 </style>