diff --git a/src/components/oas-selector.tsx b/src/components/oas-selector.tsx index 3af7346..7a7bbd3 100644 --- a/src/components/oas-selector.tsx +++ b/src/components/oas-selector.tsx @@ -40,24 +40,50 @@ export function OASSelector() { }; return ( - + - AEP UI - - Enter a URL to your AEP-compliant OpenAPI Spec to continue. + AEP Explorer + +

+ A web interface for exploring and interacting with{" "} + + AEP-compliant + {" "} + APIs. +

+

+ What you can do: +

+
    +
  • View all resources exposed by your API
  • +
  • Browse and filter objects within collections
  • +
  • Create, read, update, and delete resources
  • +
  • Explore resource relationships and custom methods
  • +
+

+ Enter your AEP-compliant OpenAPI Spec URL below to get started. +

- + setState({ ...state, url: event.target.value })} required /> +

+ The URL should point to a valid OpenAPI 3.0+ specification for an AEP-compliant API. +

@@ -67,9 +93,12 @@ export function OASSelector() { placeholder="/api/v1" onChange={(event) => setState({ ...state, prefix: event.target.value })} /> +

+ If your API uses a path prefix (e.g., /api/v1), specify it here. +