import type { MetadataRoute } from "next";
import { STORE_NAME } from "@/lib/store-info";

export default function manifest(): MetadataRoute.Manifest {
  return {
    name: STORE_NAME,
    short_name: "L'Uni-Verre",
    description: "Opticienne à Antibes - lunettes de vue et solaires.",
    start_url: "/",
    display: "standalone",
    background_color: "#f8f4ec",
    theme_color: "#b89455",
    lang: "fr-FR",
    icons: [
      {
        src: "/logojessica.png",
        sizes: "any",
        type: "image/png",
      },
    ],
  };
}
