spb/countryatlas
Public
TypeScript 57%
Python 38.6%
JavaScript 3.6%
CSS 0.6%
1import type { MetadataRoute } from 'next';2import { SITE_NAME, TAGLINE } from '@/lib/site';34export default function manifest(): MetadataRoute.Manifest {5 return {6 name: `${SITE_NAME} — ${TAGLINE}`,7 short_name: SITE_NAME,8 description: 'The interactive data atlas of the world: 218 countries, 260+ indicators, every number traceable to its source.',9 start_url: '/',10 display: 'standalone',11 background_color: '#fbfaf7',12 theme_color: '#1c5cab',13 categories: ['education', 'news', 'reference'],14 icons: [15 { src: '/icon.svg', type: 'image/svg+xml', sizes: 'any', purpose: 'any' },16 { src: '/icon.png', type: 'image/png', sizes: '512x512', purpose: 'any' },17 { src: '/apple-icon.png', type: 'image/png', sizes: '180x180', purpose: 'any' },18 ],19 };20}21