diff --git a/packages/web/src/components/BrandHeading.tsx b/packages/web/src/components/BrandHeading.tsx
new file mode 100644
index 0000000..a3838df
--- /dev/null
+++ b/packages/web/src/components/BrandHeading.tsx
@@ -0,0 +1,23 @@
+"use client"
+
+import { useThemeStore } from "@rahoot/web/stores/theme"
+import clsx from "clsx"
+
+type Props = {
+ className?: string
+}
+
+const BrandHeading = ({ className }: Props) => {
+ const { brandName } = useThemeStore()
+ const label = brandName || "Rahoot!"
+
+ return (
+
+ )
+}
+
+export default BrandHeading
diff --git a/packages/web/src/components/game/GameWrapper.tsx b/packages/web/src/components/game/GameWrapper.tsx
index 680fe57..ca71cbc 100644
--- a/packages/web/src/components/game/GameWrapper.tsx
+++ b/packages/web/src/components/game/GameWrapper.tsx
@@ -37,7 +37,7 @@ const GameWrapper = ({
const { isConnected } = useSocket()
const { player } = usePlayerStore()
const { questionStates, setQuestionStates } = useQuestionStore()
- const { backgroundUrl, brandName, setBackground, setBrandName } = useThemeStore()
+ const { backgroundUrl, setBackground, setBrandName } = useThemeStore()
const [isDisabled, setIsDisabled] = useState(false)
const next = statusName ? MANAGER_SKIP_BTN[statusName] : null
@@ -109,12 +109,6 @@ const GameWrapper = ({
)}
-
-
- {brandName}
-
-
-
{manager && next && (