This commit is contained in:
2020-11-08 09:12:17 +01:00
parent 598ea0cc25
commit 50527d0370
93 changed files with 14163 additions and 19 deletions

33
src/pages/About.vue Normal file
View File

@@ -0,0 +1,33 @@
<template>
<Layout :hideHeader="false" :disableScroll="true">
<div class="container sm:pxi-0 mx-auto overflow-x-hidden">
<VacationCard
img="/img/garden.jpg"
imgAlt="Beach in Cancun"
eyebrow="Private Villa"
title="
- Relaxing All-Inclusive Resort in Cancun
- Test
"
pricing="$299 USD per night"
url="/vacations/cancun"
/>
</div>
</Layout>
</template>
<script>
export default {
metaInfo: {
title: "About us"
}
};
</script>