We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ef01f commit 67bad8fCopy full SHA for 67bad8f
packages/website/src/app/layout.tsx
@@ -8,9 +8,17 @@ const ibmPlexMono = IBM_Plex_Mono({
8
weight: ["400", "500"],
9
});
10
11
+const SITE_URL = "https://www.react.doctor";
12
+const TWITTER_IMAGE_PATH = "/react-doctor-og-banner.svg";
13
+
14
export const metadata: Metadata = {
15
+ metadataBase: new URL(SITE_URL),
16
title: "React Doctor",
17
description: "Let coding agents diagnose and fix your React code.",
18
+ twitter: {
19
+ card: "summary_large_image",
20
+ images: [TWITTER_IMAGE_PATH],
21
+ },
22
icons: { icon: "/react-doctor-icon.svg" },
23
};
24
0 commit comments