Spaces:
Running
Running
Commit
·
d8d324c
1
Parent(s):
130cfe4
feat: add OpenGraph metadata for improved social sharing
Browse files- Included OpenGraph properties in the metadata for better integration with social media platforms.
- Set site name and URL to enhance visibility when sharing links.
- app/layout.tsx +4 -0
app/layout.tsx
CHANGED
@@ -11,6 +11,10 @@ const inter = Inter({ subsets: ["latin"] });
|
|
11 |
export const metadata: Metadata = {
|
12 |
title: "Scira MCP Chat",
|
13 |
description: "Scira MCP Chat is a chat interface for interacting with MCP servers.",
|
|
|
|
|
|
|
|
|
14 |
};
|
15 |
|
16 |
export default function RootLayout({
|
|
|
11 |
export const metadata: Metadata = {
|
12 |
title: "Scira MCP Chat",
|
13 |
description: "Scira MCP Chat is a chat interface for interacting with MCP servers.",
|
14 |
+
openGraph: {
|
15 |
+
siteName: "Scira MCP Chat",
|
16 |
+
url: "https://mcp.scira.ai",
|
17 |
+
}
|
18 |
};
|
19 |
|
20 |
export default function RootLayout({
|