diff --git a/apps/gui/public/background.png b/apps/gui/public/background.png new file mode 100644 index 0000000..0f5d767 Binary files /dev/null and b/apps/gui/public/background.png differ diff --git a/apps/gui/public/logo-shadow.png b/apps/gui/public/logo-shadow.png new file mode 100644 index 0000000..2640f04 Binary files /dev/null and b/apps/gui/public/logo-shadow.png differ diff --git a/apps/gui/public/output.webm b/apps/gui/public/output.webm new file mode 100644 index 0000000..1559c2f Binary files /dev/null and b/apps/gui/public/output.webm differ diff --git a/apps/gui/src/app/layout.tsx b/apps/gui/src/app/layout.tsx index 3daadea..d67b030 100644 --- a/apps/gui/src/app/layout.tsx +++ b/apps/gui/src/app/layout.tsx @@ -1,6 +1,6 @@ "use client"; -import type { ReactNode } from "react"; +import { useEffect, type ReactNode } from "react"; import { Jersey_25, JetBrains_Mono, Space_Mono } from "next/font/google"; import Link from "next/link"; import { usePathname } from "next/navigation"; @@ -40,22 +40,43 @@ const links = [ export default function RootLayout({ children }: { children: ReactNode }) { const pathname = usePathname(); + useEffect(() => { + document.title = "Omnia"; + }, []); + return ( - + + {!pathname?.startsWith("/play") && ( +