All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m7s
21 lines
373 B
Vue
21 lines
373 B
Vue
<script setup lang="ts">
|
|
import HeaderLinks from './HeaderLinks.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="header">
|
|
<Container>
|
|
<h1>ARANROIG.COM</h1>
|
|
<HeaderLinks></HeaderLinks>
|
|
</Container>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.header {
|
|
position: relative;
|
|
margin-top: 50px;
|
|
user-select: none;
|
|
}
|
|
</style> |