Set title for pomodoro app

This commit is contained in:
Sakura Knoll
2022-09-12 08:13:46 +09:00 Unverified
parent d535cfb853
commit bea14fecaf
+4
View File
@@ -4,6 +4,7 @@ import PomodoroAppMain from '../../../pomodoro/PomodoroAppMain'
import { loadTimerEvents } from '../../../pomodoro/data' import { loadTimerEvents } from '../../../pomodoro/data'
import { TimerEvent } from '../../../pomodoro/interfaces' import { TimerEvent } from '../../../pomodoro/interfaces'
import { theme } from '../../../pomodoro/theme' import { theme } from '../../../pomodoro/theme'
import Head from 'next/head'
const PomodoroAppPage = () => { const PomodoroAppPage = () => {
const [initialized, setInitialized] = useState(false) const [initialized, setInitialized] = useState(false)
@@ -18,6 +19,9 @@ const PomodoroAppPage = () => {
} }
return ( return (
<Box> <Box>
<Head>
<title>Pomodoro Bronya - Abyss Lab</title>
</Head>
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<PomodoroAppMain initialTimerEvents={initialTimerEvents} /> <PomodoroAppMain initialTimerEvents={initialTimerEvents} />
</ThemeProvider> </ThemeProvider>