Merge pull request 'Update image metadata. Added height and width to image properties. Added image metadata.' (#12) from metadata into main
All checks were successful
Node.js CI / build (18.x) (push) Successful in 52s
Node.js CI / build (20.x) (push) Successful in 53s
Node.js CI / build (22.x) (push) Successful in 52s
Vercel Production Deployment / Deploy-Production (push) Successful in 1m4s

Reviewed-on: lcm/lcm-website#12
This commit is contained in:
2025-09-19 05:25:37 +00:00

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>