All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m7s
22 lines
492 B
Vue
22 lines
492 B
Vue
<script setup lang="ts">
|
|
import HeaderLinks from './HeaderLinks.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="undertable">
|
|
<h1>ARANROIG.COM</h1>
|
|
<HeaderLinks></HeaderLinks>
|
|
<Sprite path="/sprites/alfadir/" frames="13" fps="6" top="-258px" left="-65px" width="1300"></Sprite>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.undertable {
|
|
position: relative;
|
|
margin-top: 350px;
|
|
margin-left: 80px;
|
|
margin-bottom: 25px;
|
|
user-select: none;
|
|
}
|
|
</style> |