Skip to content

Commit

Permalink
feat: update my interests
Browse files Browse the repository at this point in the history
  • Loading branch information
rnmeow committed Aug 31, 2024
1 parent 88182db commit 6998cce
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<p class="text-lg">
一個來自台灣 🇹🇼 的網頁設計師 👨🏻‍💻、Podcast 愛好者 📻、部落客 ✍️ 和學生 👨‍🎓。
<br/>
目前正在學習 <NuxtLink to="https://go.dev" target="_blank" class="decoration-2 hover:underline">Go</NuxtLink> <FAIcon category="fab" icon="golang" tailwind="text-sky-600 dark:text-sky-400"/>、<NuxtLink to="https://react.dev" target="_blank" class="decoration-2 hover:underline">React</NuxtLink> <FAIcon category="fab" icon="react" tailwind="text-blue-600 dark:text-blue-400"/>、<NuxtLink to="https://git-scm.com" target="_blank" class="decoration-2 hover:underline">Git</NuxtLink> <FAIcon category="fab" icon="git-alt" tailwind="text-orange-600 dark:text-orange-400"/> 和 <NuxtLink to="https://nodejs.org" target="_blank" class="decoration-2 hover:underline">Node.js</NuxtLink> <FAIcon category="fab" icon="node-js" tailwind="text-lime-600 dark:text-lime-400"/> ……<!-- WHAT A MESS?-->
目前正在學習 <NuxtLink to="https://go.dev" target="_blank" class="decoration-2 hover:underline">Go</NuxtLink> <FAIcon category="fab" icon="golang" tailwind="text-sky-600 dark:text-sky-400"/>、<NuxtLink to="https://aws.amazon.com/tw/what-is/sql/" target="_blank" class="decoration-2 hover:underline">SQL</NuxtLink> <FAIcon category="fas" icon="database" tailwind="text-blue-600 dark:text-blue-400"/>、<NuxtLink to="https://git-scm.com" target="_blank" class="decoration-2 hover:underline">Git</NuxtLink> <FAIcon category="fab" icon="git-alt" tailwind="text-orange-600 dark:text-orange-400"/> 和 <NuxtLink to="https://nodejs.org" target="_blank" class="decoration-2 hover:underline">Node.js</NuxtLink> <FAIcon category="fab" icon="node-js" tailwind="text-lime-600 dark:text-lime-400"/> ……<!-- WHAT A MESS?-->
</p>
</div>
</div>
Expand Down
46 changes: 40 additions & 6 deletions plugins/font-awesome.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,52 @@
import { library, config } from '@fortawesome/fontawesome-svg-core'
import {
faTag, faAngleLeft, faAngleRight, faAngleUp, faHeart, faRss, faBars, faEnvelope, faEye, faClockRotateLeft
faTag,
faAngleLeft,
faAngleRight,
faAngleUp,
faHeart,
faRss,
faBars,
faDatabase,
faEnvelope,
faEye,
faClockRotateLeft
} from '@fortawesome/free-solid-svg-icons'
import { faCopyright } from '@fortawesome/free-regular-svg-icons'
import {
faGolang, faReact, faGitAlt, faNodeJs, faGithub, faBitbucket, faWhatsapp, faTelegram, faStackOverflow
import {
faGolang,
faGitAlt,
faNodeJs,
faGithub,
faBitbucket,
faWhatsapp,
faTelegram,
faStackOverflow
} from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'

config.autoAddCss = false
library.add(
faTag, faAngleLeft, faAngleRight, faAngleUp, faHeart, faRss, faBars, faEnvelope, faEye,
faCopyright, faClockRotateLeft, faGolang, faReact, faGitAlt, faNodeJs,
faGithub, faBitbucket, faWhatsapp, faTelegram, faStackOverflow
faTag,
faAngleLeft,
faAngleRight,
faAngleUp,
faHeart,
faRss,
faBars,
faDatabase,
faEnvelope,
faEye,
faCopyright,
faClockRotateLeft,
faGolang,
faGitAlt,
faNodeJs,
faGithub,
faBitbucket,
faWhatsapp,
faTelegram,
faStackOverflow
)

export default defineNuxtPlugin((nuxtApp) => {
Expand Down

0 comments on commit 6998cce

Please sign in to comment.