NextJS native Youtube Embed

PHOTO EMBED

Tue Jan 16 2024 05:19:44 GMT+0000 (Coordinated Universal Time)

Saved by @vishalbhan

app/layout.tsx
✅ copied
Copy
import { YouTubeEmbed } from '@next/third-parties/google'

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <body>{children}</body>
      <YouTubeEmbed videoid="ogfYd705cRs" height={400} params="controls=0" />
    </html>
  )
}
content_copyCOPY

https://codedrivendevelopment.com/posts/rarely-known-nextjs-features?utm_source