diff --git a/nginx.conf b/nginx.conf
index 3aa17e6..59e4c89 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -2,6 +2,10 @@ server {
listen 80;
server_name _;
+ # Increase buffer size to handle large IAP JWT headers
+ client_header_buffer_size 4k;
+ large_client_header_buffers 4 16k;
+
root /usr/share/nginx/html;
index index.html;
diff --git a/src/App.tsx b/src/App.tsx
index 8cff5db..b67b0b9 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,6 +3,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { Toaster } from 'sonner'
import LandingPage from './pages/LandingPage'
import ChatPage from './pages/ChatPage'
+import TyndalePage from './pages/TyndalePage'
const queryClient = new QueryClient()
@@ -13,6 +14,7 @@ const App = () => (