Skip to content

Commit 040b46e

Browse files
committed
Add the button for the documentation website to the menu
1 parent 556154c commit 040b46e

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/app/components/navigation/navbar/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ const Navbar = ({ toggle }: { toggle: () => void }) => {
2828
<p>Deliverables</p>
2929
</Link>
3030
</li>
31+
<li>
32+
<a href="https://apple-vision-pro-tutorial.readthedocs.io/en/latest/" target="_blank">
33+
<p>Documentations</p>
34+
</a>
35+
</li>
3136
</ul>
3237
</div>
3338
</div>

src/app/components/navigation/sidebar/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ const Sidebar = ({
3232
<p>Deliverables</p>
3333
</Link>
3434
</li>
35+
<li>
36+
<a href="https://apple-vision-pro-tutorial.readthedocs.io/en/latest/" onClick={toggle} target="_blank">
37+
<p>Documentations</p>
38+
</a>
39+
</li>
3540
</ul>
3641
</div>
3742
</>

0 commit comments

Comments
 (0)