Reinstate the egg

This commit is contained in:
Ben Grant 2023-05-24 20:31:24 +10:00
parent 90352503b3
commit 00c7ae16f2
5 changed files with 113 additions and 44 deletions

View file

@ -1,5 +1,6 @@
import { Metadata } from 'next'
import Egg from '/src/components/Egg/Egg'
import Settings from '/src/components/Settings/Settings'
import { fallbackLng } from '/src/i18n/options'
import { useTranslation } from '/src/i18n/server'
@ -31,6 +32,7 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {
<body>
<Settings />
{children}
<Egg />
</body>
</html>
}