Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# shipbase/ui

Beautifully designed components that you can copy and paste into your apps.
**Framework agnostic. Accessible. Customizable.**
![Beta](https://img.shields.io/badge/status-beta-orange)

> **Note:** This project is currently in active development. Features and APIs may change as we work towards a stable release.

Beautifully designed components that you can copy and paste into your apps.
**Framework agnostic. Accessible. Customizable.**
Built with [Ark UI](https://ark-ui.com/) and [Tailwind CSS](https://tailwindcss.com/).
Inspired by [shadcn/ui](https://ui.shadcn.com/) style.

Expand Down
4 changes: 2 additions & 2 deletions apps/www/src/components/landing/newsletter.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { Button } from "@ui/react/button"
import { Input } from "@ui/react/input"
// import { Button } from "@ui/react/button"
// import { Input } from "@ui/react/input"
---

<!-- Email subscribe section - commented out for now, not implemented yet
Expand Down
2 changes: 1 addition & 1 deletion apps/www/src/pages/og/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const GET: APIRoute = async ({ url }) => {
const image = renderer.render()
const pngBuffer = image.asPng()

return new Response(pngBuffer, {
return new Response(pngBuffer as BodyInit, {
status: 200,
headers: {
"content-type": "image/png",
Expand Down
Loading