Skip to content

Commit 19c2f8b

Browse files
committed
add llguidance link
1 parent 864a3e6 commit 19c2f8b

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

src/components/react/SideNav.tsx

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -98,45 +98,45 @@ function SideNav({
9898
return (
9999
<div className="w-64 bg-[var(--bg-secondary)] text-[var(--text-primary)] shadow-md h-full p-4 overflow-y-auto flex flex-col">
100100
<NavAccordion iconComponent={rocketIcon} title="Quick Start" defaultOpen={isInQuickStart}>
101-
<NotebookLinks
102-
links={quickStartLinks}
103-
onNavigate={onNavigate}
104-
activeHref={activeHref}
105-
setActiveHref={setActiveHref}
106-
/>
107-
101+
<NotebookLinks
102+
links={quickStartLinks}
103+
onNavigate={onNavigate}
104+
activeHref={activeHref}
105+
setActiveHref={setActiveHref}
106+
/>
108107
</NavAccordion>
109108

110109
<div className="mt-3">
111110
<NavAccordion iconComponent={bookIcon} title="Tutorials" defaultOpen={isInTutorials}>
112-
<NotebookLinks
113-
links={tutorialLinks}
114-
onNavigate={onNavigate}
115-
activeHref={activeHref}
116-
setActiveHref={setActiveHref}
117-
/>
111+
<NotebookLinks
112+
links={tutorialLinks}
113+
onNavigate={onNavigate}
114+
activeHref={activeHref}
115+
setActiveHref={setActiveHref}
116+
/>
118117
</NavAccordion>
119118
</div>
120119

121120
<div className="mt-3">
122121
<NavAccordion iconComponent={spatulaIcon} title="Cookbook" defaultOpen={isInCookbook}>
123-
<NotebookLinks
124-
links={cookbookLinks}
125-
onNavigate={onNavigate}
126-
activeHref={activeHref}
127-
setActiveHref={setActiveHref}
128-
/>
122+
<NotebookLinks
123+
links={cookbookLinks}
124+
onNavigate={onNavigate}
125+
activeHref={activeHref}
126+
setActiveHref={setActiveHref}
127+
/>
129128
</NavAccordion>
130129
</div>
131130

132131
<div className="mt-3">
133132
<NavAccordion iconComponent={codeIcon} title="API Reference" defaultOpen={isInApi}>
134-
<NotebookLinks
135-
links={apiLinks}
136-
onNavigate={onNavigate}
137-
activeHref={activeHref}
138-
setActiveHref={setActiveHref}
139-
/>
133+
<NotebookLinks
134+
links={apiLinks}
135+
onNavigate={onNavigate}
136+
activeHref={activeHref}
137+
setActiveHref={setActiveHref}
138+
/>
139+
<a href="https://guidance-ai.github.io/llguidance/llg-go-brrr" target="_none">llguidance</a>
140140
</NavAccordion>
141141
</div>
142142
</div>

0 commit comments

Comments
 (0)