Fix the following React Review diagnostics in my codebase.
## Warnings (7)
1. [warning] no-inline-exhaustive-style — src/app/[locale]/og/route.tsx:14
9 inline style properties — extract to a CSS class, CSS module, or styled component for maintainability and reuse
2. [warning] no-inline-exhaustive-style — src/app/[locale]/og/route.tsx:28
8 inline style properties — extract to a CSS class, CSS module, or styled component for maintainability and reuse
3. [warning] no-inline-exhaustive-style — src/app/[locale]/og/route.tsx:42
8 inline style properties — extract to a CSS class, CSS module, or styled component for maintainability and reuse
4. [warning] no-inline-exhaustive-style — src/app/[locale]/og/route.tsx:78
8 inline style properties — extract to a CSS class, CSS module, or styled component for maintainability and reuse
5. [warning] no-wide-letter-spacing — src/app/[locale]/lds-heatmap/heatmap.tsx:176
Letter spacing 0.06em on body text disrupts natural character groupings. Reserve wide tracking for short uppercase labels only
6. [warning] no-wide-letter-spacing — src/app/[locale]/lds-heatmap/heatmap.tsx:551
Letter spacing 0.06em on body text disrupts natural character groupings. Reserve wide tracking for short uppercase labels only
7. [warning] async-await-in-loop — src/components/floating-eli5.tsx:55
await inside a while-loop runs the calls sequentially — for independent operations, collect them and use `await Promise.all(items.map(...))` to run them concurrently
Copy as prompt
9 inline style properties — extract to a CSS class, CSS module, or styled component for maintainability and reuse · 4 in 1 file
no-inline-exhaustive-stylesrc/app/[locale]/og/route.tsxLetter spacing 0.06em on body text disrupts natural character groupings. Reserve wide tracking for short uppercase labels only · 2 in 1 file
no-wide-letter-spacingsrc/app/[locale]/lds-heatmap/heatmap.tsxawait inside a while-loop runs the calls sequentially — for independent operations, collect them and use `await Promise.all(items.map(...))` to run them concurrently · 1 in 1 file
async-await-in-loopsrc/components/floating-eli5.tsxReviewed by reactreview for commit dc4a4d5. Configure here.