spb/internetpressure
Public
TypeScript 36.3%
Python 31.8%
Go 18%
JavaScript 9.8%
Shell 1.9%
SQL 1.4%
CSS 0.5%
1import type { MetadataRoute } from 'next';2import { DESCRIPTION, SITE_NAME } from '@/lib/site';34export default function manifest(): MetadataRoute.Manifest {5 return {6 name: SITE_NAME,7 short_name: 'InternetPressure',8 description: DESCRIPTION,9 start_url: '/',10 display: 'standalone',11 background_color: '#070A0F',12 theme_color: '#070A0F',13 icons: [14 { src: '/icon.png', sizes: '512x512', type: 'image/png' },15 { src: '/apple-icon.png', sizes: '180x180', type: 'image/png' },16 { src: '/icon.svg', sizes: 'any', type: 'image/svg+xml' },17 ],18 };19}20