diff --git a/assets/css/animations.css b/assets/css/animations.css index 83c3943..9f2ba67 100644 --- a/assets/css/animations.css +++ b/assets/css/animations.css @@ -3,3 +3,30 @@ opacity: 0; } } + +@keyframes wave-animation { + 0% { + transform: rotate(0); + } + 10% { + transform: rotate(14deg); + } + 20% { + transform: rotate(-8deg); + } + 30% { + transform: rotate(14deg); + } + 40% { + transform: rotate(-4deg); + } + 50% { + transform: rotate(10deg); + } + 60% { + transform: rotate(0); + } + 100% { + transform: rotate(0); + } +} diff --git a/components/ui/TheHeader.vue b/components/ui/TheHeader.vue index 5a1ad9d..69c26fd 100644 --- a/components/ui/TheHeader.vue +++ b/components/ui/TheHeader.vue @@ -3,6 +3,9 @@
+

+ Pablo Sirera +