feat(club-002): club PWA: join flow, digital card and installable shell

This commit is contained in:
Deploy
2026-08-26 19:21:49 +02:00
parent b2ccc70dc6
commit c263b44355
20 changed files with 1059 additions and 100 deletions

View File

@@ -0,0 +1,30 @@
import type { MetadataRoute } from 'next';
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'Club Mercado de Vida',
short_name: 'Club MdV',
description: 'Tarjeta digital y acceso rápido al Club de Clientes de Mercado de Vida.',
start_url: '/club',
scope: '/',
display: 'standalone',
orientation: 'portrait',
background_color: '#F5F9EF',
theme_color: '#70AD47',
categories: ['shopping', 'lifestyle'],
icons: [
{
src: '/images/club-icon-192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'maskable',
},
{
src: '/images/club-icon-512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
},
],
};
}