diff --git a/frontend/src/components/MisconfigurationScreen.tsx b/frontend/src/components/MisconfigurationScreen.tsx index 1a9fbdeb..aaf8b2f8 100644 --- a/frontend/src/components/MisconfigurationScreen.tsx +++ b/frontend/src/components/MisconfigurationScreen.tsx @@ -10,41 +10,55 @@ interface Props { export function MisconfigurationScreen({ missing }: Props) { return (
-
+
-

App Misconfiguration

+

Configuration Required

-

- The following required environment variables are not set. Copy{' '} +

+ To run this application, configure the required environment variables below. Copy{' '} .env.example to{' '} - .env and fill - in the values. + .env in the frontend directory.

-
    - {missing.map((item) => ( -
  • - -
    - {item.key} - {item.description} -
    -
  • - ))} -
- - View setup instructions → - +
+

Missing Variables ({missing.length}):

+
    + {missing.map((item) => ( +
  • + +
    + {item.key} + {item.description} +
    +
  • + ))} +
+
+
+ + 📖 + Setup Instructions + + + 📄 + View .env.example + +
)