Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ export default defineConfig({
},
markdown: {
syntaxHighlight: 'prism'
},
server: {
host: '0.0.0.0'
}
});
10 changes: 5 additions & 5 deletions docs/src/components/DocsSidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ const activeItem = undefined;
const sections = {
'CORE_CONCEPTS': [
{ title: "Overview", id: "overview", slug: "core-concepts" },
{ title: "STATE", id: "state", slug: "core-concepts", hash: "#state" },
{ title: "TRANSITIONS", id: "transitions", slug: "core-concepts", hash: "#transitions" },
{ title: "EVENTS", id: "events", slug: "core-concepts", hash: "#events" },
{ title: "GUARDS", id: "guards", slug: "core-concepts", hash: "#guards" },
{ title: "ACTIONS", id: "actions", slug: "core-concepts", hash: "#actions" }
{ title: "STATE", id: "state", slug: "concepts-state" },
{ title: "TRANSITIONS", id: "transitions", slug: "concepts-transitions" },
{ title: "EVENTS", id: "events", slug: "concepts-events" },
{ title: "GUARDS", id: "guards", slug: "concepts-guards" },
{ title: "ACTIONS", id: "actions", slug: "concepts-actions" }
],
'GUIDES': [
{ title: "COMPOSITION", id: "composition", slug: "composition" },
Expand Down
4 changes: 2 additions & 2 deletions docs/src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Heart from '../icons/Heart.astro';
<div>
<h3 class="font-mono text-cyan-400 font-bold mb-4 text-sm">CONNECT</h3>
<div class="space-y-2">
<a href="https://github.com" class="flex items-center justify-center gap-2 text-gray-200 hover:text-cyan-400 transition-colors">
<a href="https://github.com/matthewp/robot" class="flex items-center justify-center gap-2 text-gray-200 hover:text-cyan-400 transition-colors">
<Github size={16} />
<span>GitHub</span>
</a>
Expand All @@ -18,7 +18,7 @@ import Heart from '../icons/Heart.astro';
<div>
<h3 class="font-mono text-cyan-400 font-bold mb-4 text-sm">DOCS</h3>
<div class="space-y-2">
<a href="/docs/" class="block text-gray-200 hover:text-cyan-400 transition-colors">API Reference</a>
<a href="/docs/" class="block text-gray-200 hover:text-cyan-400 transition-colors">Documentation</a>
</div>
</div>

Expand Down
Loading