- Add docs pages (getting-started, changelog, keyboard-shortcuts) - Add blog, community, and legal pages (privacy, terms, EULA) - Add site header, footer, download button, and nav components - Add sitemap and robots.txt generation - Narrow main page container (max-w-2xl), fix footer positioning - Switch README feature list to colon style
19 lines
468 B
TypeScript
19 lines
468 B
TypeScript
import type { Metadata } from "next";
|
|
import { KeyboardShortcuts } from "../../keyboard-shortcuts";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Keyboard Shortcuts",
|
|
description: "Complete list of cmux keyboard shortcuts",
|
|
};
|
|
|
|
export default function KeyboardShortcutsPage() {
|
|
return (
|
|
<>
|
|
<h1>Keyboard Shortcuts</h1>
|
|
<p>
|
|
All keyboard shortcuts available in cmux, grouped by category.
|
|
</p>
|
|
<KeyboardShortcuts />
|
|
</>
|
|
);
|
|
}
|