import { MetadataRoute } from 'next'; export default function manifest(): MetadataRoute.Manifest { return { name: 'KLZ Cables', short_name: 'KLZ', description: 'Premium Cable Solutions', start_url: '/', display: 'standalone', background_color: '#001a4d', theme_color: '#001a4d', icons: [ { src: '/favicon.ico', sizes: 'any', type: 'image/x-icon', }, { src: '/logo.png', sizes: '512x512', type: 'image/png', }, { src: '/apple-touch-icon.png', sizes: '180x180', type: 'image/png', }, ], }; }