This repository has no description
1import type { MetadataRoute } from 'next';
2import { theme } from '@/styles/theme';
3
4export default function manifest(): MetadataRoute.Manifest {
5 return {
6 name: 'Semble',
7 short_name: 'Semble',
8 description: 'A social knowledge network for researchers',
9 start_url: '/home',
10 display: 'standalone',
11 background_color: '#ffffff',
12 theme_color: theme.colors?.orange?.[6],
13 icons: [
14 {
15 src: '/semble-icon-192x192.png',
16 sizes: '192x192',
17 type: 'image/png',
18 },
19 {
20 src: '/semble-icon-512x512.png',
21 sizes: '512x512',
22 type: 'image/png',
23 },
24 ],
25 };
26}