Skip to content

Commit

Permalink
meta: more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
makinbacon21 committed Nov 21, 2024
1 parent 408983b commit fa33cc0
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 9 deletions.
Binary file modified app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 33 additions & 9 deletions app/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,53 @@ export default function manifest(): MetadataRoute.Manifest {
theme_color: "#141C2A",
icons: [
{
src: "/favicon.ico",
sizes: "any",
src: "favicon.ico",
sizes: "32x32",
type: "image/x-icon",
purpose: "any",
},
{
src: "/logo.svg",
src: "logo.svg",
sizes: "any",
type: "image/x-icon",
type: "image/svg",
purpose: "any",
},
{
src: "icon.png",
sizes: "2048x2048",
type: "image/png",
purpose: "any",
},
{
src: "icon-maskable.png",
sizes: "2048x2048",
type: "image/png",
purpose: "maskable",
},
{
src: "opengraph-image.png",
sizes: "1200x630",
type: "image/png",
purpose: "any",
},
{
src: "twitter-image.png",
sizes: "1600x900",
type: "image/png",
purpose: "any",
},
],
screenshots: [
{
src: "/screenshot-wide.jpeg",
src: "screenshot-wide.png",
sizes: "2363x1267",
type: "image/jpg",
type: "image/png",
form_factor: "wide",
},
{
src: "/screenshot-narrow.jpeg",
sizes: "621x1335",
type: "image/jpg",
src: "screenshot-narrow.png",
sizes: "563x999",
type: "image/png",
form_factor: "narrow",
},
],
Expand Down
2 changes: 2 additions & 0 deletions middleware.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { withAuth } from "next-auth/middleware";

export const config = { matcher: ["/", "/calendar", "/rating"] };

export default withAuth({
// Matches the pages config in `[...nextauth]`
pages: {
Expand Down
Binary file added public/icon-maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fa33cc0

Please sign in to comment.