Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hongbin9 committed Aug 21, 2024
1 parent e76d40a commit ff5ae0f
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ This guide will help you integrate the NeoRetro UI components into your Tailwind
<button class="btn">Default Button</button>
<button class="btn bg-secondary text-white">Secondary Button</button>
<button class="btn bg-transparent text-secondary border-secondary hover:bg-secondary hover:text-white">Outline Button</button>

```

### Cards
Expand Down Expand Up @@ -83,7 +84,8 @@ This guide will help you integrate the NeoRetro UI components into your Tailwind
</form>
```

### Badges
###Badges

```html
<span class="badge badge-primary">primary</span>
<span class="badge badge-secondary">secondary</span>
Expand All @@ -96,6 +98,32 @@ This guide will help you integrate the NeoRetro UI components into your Tailwind
<div class="alert alert-danger">This is a danger alert!</div>
```

### Tabs

```html
<div class="tabs">
<div class="tab active" data-tab="tab1">Tab 1</div>
<div class="tab" data-tab="tab2">Tab 2</div>
<div class="tab" data-tab="tab3">Tab 3</div>
</div>
<div id="tab1" class="tab-content active">Content for Tab 1</div>
<div id="tab2" class="tab-content">Content for Tab 2</div>
<div id="tab3" class="tab-content">Content for Tab 3</div>
```

### Navbar

```html
<nav class="navbar">
<div class="navbar-brand">NeoRetro</div>
<div class="navbar-menu">
<a href="#" class="navbar-item">Home</a>
<a href="#" class="navbar-item">About</a>
<a href="#" class="navbar-item">Contact</a>
</div>
</nav>
```

## Additional Components

As we continue to develop the NeoRetro UI, we'll add more components and utility classes. Stay tuned for updates!
Expand Down

0 comments on commit ff5ae0f

Please sign in to comment.