photoprism/frontend/src/app/pages/import.vue

37 lines
624 B
Vue
Raw Normal View History

<template>
2018-08-03 13:17:13 +00:00
<div class="page page-import">
<h1>Import</h1>
<p class="md-subheading">
A user-friendly tool for importing, filtering and archiving large amounts of JPEG and RAW files
</p>
</div>
</template>
<script>
export default {
2018-08-03 13:17:13 +00:00
name: 'import',
data() {
return {
};
},
methods: {
}
};
</script>
<style scoped>
h1, h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
</style>