mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
fix: metadata
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
import { Metadata } from "next";
|
import { Metadata } from "next";
|
||||||
|
|
||||||
const title = "OpenCut";
|
const title = "OpenCut";
|
||||||
const description = "A simple but powerful video editor that gets the job done. In your browser.";
|
const description =
|
||||||
|
"A simple but powerful video editor that gets the job done. In your browser.";
|
||||||
const openGraphImageUrl = "https://opencut.app/opengraph-image.jpg";
|
const openGraphImageUrl = "https://opencut.app/opengraph-image.jpg";
|
||||||
const twitterImageUrl = "/opengraph-image.jpg";
|
const twitterImageUrl = "/opengraph-image.jpg";
|
||||||
|
|
||||||
export const baseMetaData: Metadata = {
|
export const baseMetaData: Metadata = {
|
||||||
|
metadataBase: new URL("https://opencut.app"),
|
||||||
title: title,
|
title: title,
|
||||||
description: description,
|
description: description,
|
||||||
openGraph: {
|
openGraph: {
|
||||||
@@ -47,13 +49,33 @@ export const baseMetaData: Metadata = {
|
|||||||
{ url: "/icons/apple-icon-60x60.png", sizes: "60x60", type: "image/png" },
|
{ url: "/icons/apple-icon-60x60.png", sizes: "60x60", type: "image/png" },
|
||||||
{ url: "/icons/apple-icon-72x72.png", sizes: "72x72", type: "image/png" },
|
{ url: "/icons/apple-icon-72x72.png", sizes: "72x72", type: "image/png" },
|
||||||
{ url: "/icons/apple-icon-76x76.png", sizes: "76x76", type: "image/png" },
|
{ url: "/icons/apple-icon-76x76.png", sizes: "76x76", type: "image/png" },
|
||||||
{ url: "/icons/apple-icon-114x114.png", sizes: "114x114", type: "image/png" },
|
{
|
||||||
{ url: "/icons/apple-icon-120x120.png", sizes: "120x120", type: "image/png" },
|
url: "/icons/apple-icon-114x114.png",
|
||||||
{ url: "/icons/apple-icon-144x144.png", sizes: "144x144", type: "image/png" },
|
sizes: "114x114",
|
||||||
{ url: "/icons/apple-icon-152x152.png", sizes: "152x152", type: "image/png" },
|
type: "image/png",
|
||||||
{ url: "/icons/apple-icon-180x180.png", sizes: "180x180", type: "image/png" },
|
},
|
||||||
|
{
|
||||||
|
url: "/icons/apple-icon-120x120.png",
|
||||||
|
sizes: "120x120",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/icons/apple-icon-144x144.png",
|
||||||
|
sizes: "144x144",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/icons/apple-icon-152x152.png",
|
||||||
|
sizes: "152x152",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/icons/apple-icon-180x180.png",
|
||||||
|
sizes: "180x180",
|
||||||
|
type: "image/png",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
shortcut: ["/favicon.ico"]
|
shortcut: ["/favicon.ico"],
|
||||||
},
|
},
|
||||||
appleWebApp: {
|
appleWebApp: {
|
||||||
capable: true,
|
capable: true,
|
||||||
@@ -61,6 +83,6 @@ export const baseMetaData: Metadata = {
|
|||||||
},
|
},
|
||||||
manifest: "/manifest.json",
|
manifest: "/manifest.json",
|
||||||
other: {
|
other: {
|
||||||
"msapplication-config": "/browserconfig.xml"
|
"msapplication-config": "/browserconfig.xml",
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user