mirror of
https://github.com/chenasraf/nextcloud-pantry.git
synced 2026-05-17 17:28:01 +00:00
22 lines
564 B
Vue
22 lines
564 B
Vue
<template>
|
|
<NcEmptyContent :name="strings.title" :description="strings.body">
|
|
<template #icon>
|
|
<ImageIcon />
|
|
</template>
|
|
</NcEmptyContent>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { t } from '@nextcloud/l10n'
|
|
import NcEmptyContent from '@nextcloud/vue/components/NcEmptyContent'
|
|
import ImageIcon from '@icons/Image.vue'
|
|
|
|
const strings = {
|
|
title: t('pantry', 'Photo board'),
|
|
body: t(
|
|
'pantry',
|
|
'Shared reference photos are coming soon. You will be able to upload and categorize pictures for the whole household.',
|
|
),
|
|
}
|
|
</script>
|