mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-17 08:34:54 -04:00
fix(deps): migrate to next 14
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
07162b7807
commit
f80dd7f0e7
3 changed files with 88 additions and 91 deletions
|
@ -13,7 +13,7 @@ import { UiNotificationBoundary } from '../../components/notifications/ui-notifi
|
|||
import { StoreProvider } from '../../redux/store-provider'
|
||||
import { baseUrlFromEnvExtractor } from '../../utils/base-url-from-env-extractor'
|
||||
import { configureLuxon } from '../../utils/configure-luxon'
|
||||
import type { Metadata } from 'next'
|
||||
import type { Metadata, Viewport } from 'next'
|
||||
import type { PropsWithChildren } from 'react'
|
||||
import React from 'react'
|
||||
import { getConfig } from '../../api/config'
|
||||
|
@ -64,13 +64,17 @@ export default async function RootLayout({ children, appBar }: RootLayoutProps)
|
|||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
themeColor: '#b51f08',
|
||||
applicationName: 'HedgeDoc',
|
||||
appleWebApp: {
|
||||
title: 'HedgeDoc'
|
||||
},
|
||||
description: 'HedgeDoc - Ideas grow better together',
|
||||
viewport: 'width=device-width, initial-scale=1',
|
||||
title: 'HedgeDoc',
|
||||
manifest: '/icons/site.webmanifest'
|
||||
}
|
||||
|
||||
export const viewport: Viewport = {
|
||||
themeColor: '#b51f08',
|
||||
width: 'device-width',
|
||||
initialScale: 1
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue