Add AOS library and use it on text elements

This commit is contained in:
Paul Nicoué 2023-03-23 12:25:18 +01:00
parent 1d185e9ff4
commit 606b4801c7
8 changed files with 86 additions and 28 deletions

5
plugins/aos.js Normal file
View file

@ -0,0 +1,5 @@
import AOS from 'aos';
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.provide('AOS', AOS);
});