···1111import { ResponseTimingTable } from "./response-timing-table";
1212import type { Timing } from "./utils";
13131414-export async function ResponseDetailTabs({
1414+export function ResponseDetailTabs({
1515 timing,
1616 headers,
1717 status,
+8-6
apps/web/src/config/pages.ts
···2233export type Page = {
44 title: string;
55+ subtitle?: string;
56 description: string;
67 href: string;
78 icon: ValidIcon;
···207208 },
208209] as const satisfies readonly Page[];
209210210210-type MarketingPageType = Page & { subtitle: string };
211211+type MarketingPageType = Page;
211212212213export const marketingProductPagesConfig = [
213214 {
214214- subtitle: "Get insights of the latency of your API and website from all over the world.",
215215 href: "/features/monitoring",
216216 title: "Monitoring",
217217- description:
218218- "Monitor your API and website globablly.",
217217+ subtitle:
218218+ "Get insights of the latency of your API and website from all over the world.",
219219+ description: "Monitor your API and website globally.",
219220 segment: "features",
220221 icon: "activity",
221222 },
222223 {
223223- subtitle: "Easily report to your users with our public or private status page.",
224224 href: "/features/status-page",
225225 title: "Status Page",
226226+ subtitle:
227227+ "Easily report to your users with our public or private status page.",
226228 description: "Create beautiful status pages within seconds.",
227229 segment: "features",
228230 icon: "panel-top",
···295297296298export function getPageBySegment(
297299 segment: string | string[],
298298- currentPage: readonly Page[] = pagesConfig
300300+ currentPage: readonly Page[] = pagesConfig,
299301): Page | undefined {
300302 if (typeof segment === "string") {
301303 const page = currentPage.find((page) => page.segment === segment);