Merge branch 'main' into small-ui-patches

This commit is contained in:
Francisco Arceo 2025-05-15 14:10:12 -06:00 committed by GitHub
commit e9cce9ed38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
54 changed files with 1825 additions and 760 deletions

View file

@ -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

View file

@ -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>
))}