From 6c14c8f491968a137b307b8216b7ba7af2e912b0 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sat, 14 Mar 2026 02:29:11 +0100 Subject: [PATCH] feat(layout): add Script component for Google Cast framework integration --- k-tv-frontend/app/layout.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/k-tv-frontend/app/layout.tsx b/k-tv-frontend/app/layout.tsx index c3ceb7a..8d13d94 100644 --- a/k-tv-frontend/app/layout.tsx +++ b/k-tv-frontend/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Providers } from "./providers"; +import Script from "next/script"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -15,7 +16,8 @@ const geistMono = Geist_Mono({ export const metadata: Metadata = { title: "K-TV", - description: "Self-hosted linear TV channel orchestration for your media library", + description: + "Self-hosted linear TV channel orchestration for your media library", }; export default function RootLayout({ @@ -25,6 +27,12 @@ export default function RootLayout({ }>) { return ( + +