add icons

This commit is contained in:
Kseninia Mikhaylova 2024-06-06 09:04:11 +03:00
parent a7470d997b
commit 220c685250
4 changed files with 19 additions and 4 deletions

11
app.vue
View File

@ -143,10 +143,19 @@ const toggleModal = () => {
<div class="footer-text" :class="[{ 'footer-text-small': item.small_text }]">{{ item.text }}</div> <div class="footer-text" :class="[{ 'footer-text-small': item.small_text }]">{{ item.text }}</div>
</template> </template>
</div> </div>
<div class="social">
<div class="container prose">
<Icon name="uil:github" />
<template v-for="item in social_networkData"> <template v-for="item in social_networkData">
<div class="social_network-name" :class="[{ 'social_network-name-small': item.link }]">{{ item.name }}</div> <div class="social_network-name" :class="[{ 'social_network-name-small': item.link }]">
<a href="#" target="_blank">
{{ item.name }}
</a>
</div>
</template> </template>
</div> </div>
</div>
</div>
<Modal /> <Modal />
</div> </div>
</template> </template>

View File

@ -1,7 +1,7 @@
// https://nuxt.com/docs/api/configuration/nuxt-config // https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({ export default defineNuxtConfig({
devtools: { enabled: true }, devtools: { enabled: true },
modules: ['@nuxtjs/tailwindcss', "@nuxt/image", "nuxt-svgo", '@tresjs/nuxt'], modules: ['@nuxtjs/tailwindcss', "@nuxt/image", "nuxt-icon", "nuxt-svgo", '@tresjs/nuxt'],
runtimeConfig: { runtimeConfig: {
public: { public: {
apiBase: '/api', apiBase: '/api',

3
package-lock.json generated
View File

@ -20,6 +20,9 @@
"three": "^0.165.0", "three": "^0.165.0",
"vue": "^3.4.27", "vue": "^3.4.27",
"vue-router": "^4.3.2" "vue-router": "^4.3.2"
},
"devDependencies": {
"nuxt-icon": "^0.6.10"
} }
}, },
"node_modules/@alloc/quick-lru": { "node_modules/@alloc/quick-lru": {

View File

@ -23,5 +23,8 @@
"three": "^0.165.0", "three": "^0.165.0",
"vue": "^3.4.27", "vue": "^3.4.27",
"vue-router": "^4.3.2" "vue-router": "^4.3.2"
},
"devDependencies": {
"nuxt-icon": "^0.6.10"
} }
} }