Update image metadata. Added height and width to image properties. Added image metadata.
All checks were successful
All checks were successful
This commit is contained in:
@@ -5,6 +5,7 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
|||||||
const { children } = props;
|
const { children } = props;
|
||||||
return (
|
return (
|
||||||
<html suppressHydrationWarning>
|
<html suppressHydrationWarning>
|
||||||
|
<meta name="theme-color" content="#00ffff" />
|
||||||
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
|
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
|
||||||
<link
|
<link
|
||||||
rel="apple-touch-icon"
|
rel="apple-touch-icon"
|
||||||
@@ -13,6 +14,14 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
|||||||
/>
|
/>
|
||||||
<meta property="og:image" content="/images/logo/new-logo.png" />
|
<meta property="og:image" content="/images/logo/new-logo.png" />
|
||||||
<meta property="og:image:type" content="image/png" />
|
<meta property="og:image:type" content="image/png" />
|
||||||
|
<meta property="og:image:width" content="653px" />
|
||||||
|
<meta property="og:image:height" content="651px" />
|
||||||
|
<meta property="image" content="/images/logo/new-logo.png" />
|
||||||
|
<meta property="image:type" content="image/png" />
|
||||||
|
<meta property="image:width" content="653px" />
|
||||||
|
<meta property="image:height" content="651px" />
|
||||||
|
<meta httpEquiv="content-language" content="en_US" />
|
||||||
|
<meta charSet="UTF-8" />
|
||||||
<body>
|
<body>
|
||||||
<Provider>{children}</Provider>
|
<Provider>{children}</Provider>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Reference in New Issue
Block a user