Skip to content

Commit f932069

Browse files
fix: use privacy-friendly YouTube embed, make mobileTall optional
1 parent 1ed6f6f commit f932069

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

apps/site/src/app/mcp/_components/mcp-capabilities-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export type McpCapability = {
55
title: string;
66
description: string;
77
prompt: string;
8-
mobileTall: boolean;
8+
mobileTall?: boolean;
99
};
1010

1111
export function McpCapabilitiesSection({

apps/site/src/app/mcp/_components/mcp-video-section.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ export function McpVideoSection() {
55
<div className="relative aspect-video w-full">
66
<iframe
77
className="size-full"
8-
src="https://www.youtube.com/embed/jFm41OPnOUc"
8+
src="https://www.youtube-nocookie.com/embed/jFm41OPnOUc"
99
title="Prisma MCP video"
1010
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
1111
referrerPolicy="strict-origin-when-cross-origin"
12+
loading="lazy"
1213
allowFullScreen
1314
/>
1415
</div>

0 commit comments

Comments
 (0)