Compare commits

..

No commits in common. "4a6bc90ecfc14c65c53aa346b9059bf983d7fe7f" and "9266599b6aec60f8feed2c32e3cc37e34017f29c" have entirely different histories.

3 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,4 @@
NEXT_PUBLIC_API_URL="https://api.a10y.techwork.zone"
NEXT_PUBLIC_API_URL="http://127.0.0.1:3000"
# Google auth for calendar syncing, feature will be disabled if these aren't set
# NEXT_PUBLIC_GOOGLE_CLIENT_ID=""

View file

@ -15,6 +15,7 @@
"@giraugh/tools": "^1.6.0",
"@js-temporal/polyfill": "^0.4.4",
"@microsoft/microsoft-graph-client": "^3.0.5",
"@vercel/analytics": "^1.0.1",
"accept-language": "^3.0.18",
"chroma.ts": "^1.0.10",
"hue-map": "^1.0.0",

View file

@ -1,5 +1,6 @@
import { Metadata } from 'next'
import { Karla } from 'next/font/google'
import { Analytics } from '@vercel/analytics/react'
import Egg from '/src/components/Egg/Egg'
import Settings from '/src/components/Settings/Settings'
@ -43,6 +44,7 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {
{children}
<Analytics />
</body>
</html>
}