fiemwl / src /app /docs /api-explorer /page.tsx
automindy's picture
Upload 1980 files
6111b2b verified
Raw
History Blame Contribute Delete
677 Bytes
import { Metadata } from "next";
import { ApiExplorerClient } from "../components/ApiExplorerClient";
export const metadata: Metadata = {
title: "API Explorer — OmniRoute Docs",
description: "Interactive API explorer — try OmniRoute endpoints live with real-time responses",
};
export default function ApiExplorerPage() {
return (
<div>
<h1 className="text-3xl font-bold text-text-main mb-2">API Explorer</h1>
<p className="text-text-muted mb-8">
Try OmniRoute endpoints live. Select an endpoint, configure your request, and see the
response in real time.
</p>
<ApiExplorerClient />
</div>
);
}