Skip to content

Commit

Permalink
refactor: manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
leapalazzolo committed Jan 31, 2024
1 parent 3270445 commit 4b97f48
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 19 deletions.
29 changes: 29 additions & 0 deletions app/manifest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { MetadataRoute } from "next";
import { SITE_CONFIG } from "@/data/config";

export default function manifest(): MetadataRoute.Manifest {
return {
name: SITE_CONFIG.name,
short_name: "Kudos",
lang: "en",
dir: "ltr",
description: SITE_CONFIG.description,
start_url: "/",
display: "standalone",
theme_color: "#ffffff",
background_color: "#ffffff",
categories: ["technology", "web3", "polkadot", "open-source", "github"],
icons: [
{
src: "/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
};
}
19 changes: 0 additions & 19 deletions public/site.webmanifest

This file was deleted.

0 comments on commit 4b97f48

Please sign in to comment.