Update image metadata. Added height and width to image properties. Added image metadata.
All checks were successful
Node.js CI / build (18.x) (pull_request) Successful in 59s
Node.js CI / build (20.x) (pull_request) Successful in 59s
Node.js CI / build (22.x) (pull_request) Successful in 58s
Vercel Preview Deployment / Deploy-Preview (pull_request) Successful in 1m12s

This commit is contained in:
2025-09-19 01:20:53 -04:00
parent 6c03c917b3
commit 6b734d42ef

View File

@@ -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>