Skip to content

Commit a72f803

Browse files
committed
fix: update demo video URL and enhance metadata structure in layout
1 parent b8d13a5 commit a72f803

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

apps/platform/src/app/(site)/about/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Card } from "@/components/ui/card";
33
import { Github, Youtube, Database, Brain } from "lucide-react";
44
import Link from "next/link";
55

6-
const DEMO_VIDEO_URL = "https://youtube.com/your-demo-video";
6+
const DEMO_VIDEO_URL = "https://www.youtube.com/watch?v=AZJZm--uAKg";
77

88
export default function AboutPage() {
99
return (

apps/platform/src/app/layout.tsx

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,33 @@ const fonts = Ubuntu({
1111
weight: ["400", "500", "700"],
1212
});
1313

14+
const BASE_URL = "https://kbnet.p8labs.tech";
15+
1416
export const metadata: Metadata = {
15-
title: "KBNet",
16-
description: "Powered by MindsDB, KBNet is a knowledge base platform.",
17+
title: "KbNet",
18+
description: "Powered by MindsDB, KbNet is a knowledge base platform.",
19+
keywords: ["knowledge base", "kbnet", "mindsdb", "knowledge management"],
20+
21+
twitter: {
22+
title: "KbNet",
23+
description: "Powered by MindsDB, KbNet is a knowledge base platform.",
24+
card: "summary_large_image",
25+
creator: "@PriyanshuPz",
26+
images:
27+
"https://res.cloudinary.com/pz-public-assets/image/upload/v1750742752/kbnet_landing_otyohg.png",
28+
},
29+
openGraph: {
30+
type: "website",
31+
title: "KbNet",
32+
description: "Powered by MindsDB, KbNet is a knowledge base platform.",
33+
images:
34+
"https://res.cloudinary.com/pz-public-assets/image/upload/v1750742752/kbnet_landing_otyohg.png",
35+
url: BASE_URL,
36+
siteName: "KbNet",
37+
38+
videos:
39+
"https://res.cloudinary.com/pz-public-assets/video/upload/v1750742807/KbNet_Demo_lhgkfy.mp4",
40+
},
1741
};
1842

1943
export default function RootLayout({

0 commit comments

Comments
 (0)