1
0
Fork 0
ryanmoon.com/pages/index.vue

18 lines
348 B
Vue
Raw Normal View History

2023-07-11 06:03:57 +00:00
<script setup>
useHead({
title: 'Ryan Moon - Software Developer',
meta: [
{
name: 'description',
content: `Hello, nice to meet you. I'm Ryan and this is my webpage.`
},
],
})
</script>
<template>
<div class="index">
<IndexHero></IndexHero>
<IndexApps></IndexApps>
</div>
</template>