diff --git a/README.md b/README.md index 8731509..cdda7cb 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ Traditional language learning apps rely on flashcards and repetitive drills. **L ## Impact & Performance -- **85% faster API responses** (600ms → 85ms) through Redis caching strategies +- **85% faster page load** (600ms → 85ms) by implementing Redis caching to eliminate multiple redundant database queries - **Zero-downtime deployments** with 80% reduction in deployment time (25min → 5min) -- **Non-blocking user experience** for 30-second AI story generation via async job queues +- **Non-blocking user experience** replacing 30-second blocking API requests with async job queues and real-time progress updates - **Production-ready architecture** handling concurrent AI processing and real-time progress updates

diff --git a/apps/landing/next-env.d.ts b/apps/landing/next-env.d.ts index 40c3d68..4f11a03 100644 --- a/apps/landing/next-env.d.ts +++ b/apps/landing/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. +// see https://nextjs.org/docs/basic-features/typescript for more information.