summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/featured.vue
blob: 725c70f0f7a4a66a34dc8589db160640a84a7b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
<MkSpacer :content-max="800">
	<XNotes ref="notes" :pagination="pagination"/>
</MkSpacer>
</template>

<script lang="ts" setup>
import XNotes from '@/components/notes.vue';
import * as symbols from '@/symbols';
import { i18n } from '@/i18n';

const pagination = {
	endpoint: 'notes/featured' as const,
	limit: 10,
	offsetMode: true,
};

defineExpose({
	[symbols.PAGE_INFO]: {
		title: i18n.locale.featured,
		icon: 'fas fa-fire-alt',
		bg: 'var(--bg)',
	},
});
</script>