Update image metadata. Added height and width to image properties. Added image metadata. #12
@@ -5,6 +5,7 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
||||
const { children } = props;
|
||||
return (
|
||||
<html suppressHydrationWarning>
|
||||
<meta name="theme-color" content="#00ffff" />
|
||||
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
|
||||
<link
|
||||
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: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>
|
||||
<Provider>{children}</Provider>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user