Finally landed on a design, created a bunch of pages.

This commit is contained in:
2020-07-18 21:48:06 +02:00
parent 92bd44cedb
commit 7078d994c0
13 changed files with 1006 additions and 203 deletions

View File

@@ -0,0 +1,28 @@
<template>
<div class="container">
<div>image: {{ image }}</div>
<div>text: {{ text }}</div>
</div>
</template>
<script>
export default {
name: 'ImageBlock',
props: {
image: {
type: String,
required: false
},
text: {
type: String,
required: false
}
}
}
</script>
<style lang="scss" scoped>
.container {
background-color: NavajoWhite;
}
</style>