26 lines
543 B
TypeScript
26 lines
543 B
TypeScript
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: '/apple-touch-icon.png',
|
|
sizes: '180x180',
|
|
type: 'image/png',
|
|
},
|
|
],
|
|
};
|
|
}
|