mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-28 09:01:59 +00:00
Merge branch 'main' into small-ui-patches
This commit is contained in:
commit
e9cce9ed38
54 changed files with 1825 additions and 760 deletions
|
|
@ -5,13 +5,13 @@ We use shadcdn/ui [Shadcn UI](https://ui.shadcn.com/) for the UI components.
|
|||
|
||||
## Getting Started
|
||||
|
||||
## Install the NPM dependencies
|
||||
First, install dependencies:
|
||||
|
||||
```bash
|
||||
npm install
|
||||
npm install next react react-dom
|
||||
```
|
||||
|
||||
Run the development server:
|
||||
Then, run the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
|
|
|
|||
|
|
@ -45,10 +45,10 @@ export function AppSidebar() {
|
|||
{logItems.map((item) => (
|
||||
<SidebarMenuItem key={item.title}>
|
||||
<SidebarMenuButton asChild>
|
||||
<a href={item.url}>
|
||||
<Link href={item.url}>
|
||||
<item.icon />
|
||||
<span>{item.title}</span>
|
||||
</a>
|
||||
</Link>
|
||||
</SidebarMenuButton>
|
||||
</SidebarMenuItem>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue