59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
export type NavItem = {
|
|
name: string;
|
|
href: string;
|
|
};
|
|
|
|
export type NavSection = {
|
|
title: string | null;
|
|
items: NavItem[];
|
|
};
|
|
|
|
export const navigation: NavSection[] = [
|
|
{
|
|
title: null,
|
|
items: [
|
|
{ name: "Introduction", href: "/" },
|
|
{ name: "Installation", href: "/installation" },
|
|
{ name: "Quick Start", href: "/quick-start" },
|
|
{ name: "Skills", href: "/skills" },
|
|
],
|
|
},
|
|
{
|
|
title: "Reference",
|
|
items: [
|
|
{ name: "Commands", href: "/commands" },
|
|
{ name: "Configuration", href: "/configuration" },
|
|
{ name: "Selectors", href: "/selectors" },
|
|
{ name: "Snapshots", href: "/snapshots" },
|
|
],
|
|
},
|
|
{
|
|
title: "Features",
|
|
items: [
|
|
{ name: "Sessions", href: "/sessions" },
|
|
{ name: "Diffing", href: "/diffing" },
|
|
{ name: "CDP Mode", href: "/cdp-mode" },
|
|
{ name: "Streaming", href: "/streaming" },
|
|
{ name: "Profiler", href: "/profiler" },
|
|
{ name: "iOS Simulator", href: "/ios" },
|
|
{ name: "Security", href: "/security" },
|
|
{ name: "Native Mode (Experimental)", href: "/native-mode" },
|
|
],
|
|
},
|
|
{
|
|
title: "Engines",
|
|
items: [
|
|
{ name: "Chrome", href: "/engines/chrome" },
|
|
{ name: "Lightpanda", href: "/engines/lightpanda" },
|
|
],
|
|
},
|
|
{
|
|
title: null,
|
|
items: [{ name: "Changelog", href: "/changelog" }],
|
|
},
|
|
];
|
|
|
|
export const allDocsPages: NavItem[] = navigation.flatMap(
|
|
(section) => section.items
|
|
);
|