summaryrefslogtreecommitdiffstats
path: root/src/views/NotFoundView.vue
blob: 9d44cc6486a231b366af0a7ca5304ced02970ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
	<div id="emptycontent">
		<div id="emptycontent-icon" class="icon-search" />
		<h2>{{ t('spreed', 'The conversation does not exist') }}</h2>
		<p class="emptycontent-additional">
			{{ t('spreed','Join a conversation or start a new one!') }}
		</p>
	</div>
</template>

<script>
export default {
	name: 'NotFoundView',
}
</script>