Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simenandre/next-theme-ui
Makes it easier to combine NextJS with Theme UI! 🖍️
https://github.com/simenandre/next-theme-ui
nextjs theme-ui typescript
Last synced: about 24 hours ago
JSON representation
Makes it easier to combine NextJS with Theme UI! 🖍️
- Host: GitHub
- URL: https://github.com/simenandre/next-theme-ui
- Owner: simenandre
- License: apache-2.0
- Created: 2021-10-17T09:46:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T04:10:50.000Z (7 days ago)
- Last Synced: 2024-12-21T07:04:17.208Z (2 days ago)
- Topics: nextjs, theme-ui, typescript
- Language: TypeScript
- Homepage:
- Size: 232 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Theme-UI Components for Next.js
This package contains a few small components to help using Theme UI with
Next.js.Specifically, this means `` and ``. If you use the components
from this package, the components will be using `` components from
`next/link` instead of a regular ``.## Quickstart
```shell
▶ yarn add next-theme-ui
```Replace these imports:
```typescript
import { Link } from '@theme-ui/components';
import { NavLink } from '@theme-ui/components';
```with
```typescript
import { Link } from 'next-theme-ui';
import { NavLink } from 'next-theme-ui';
```## Contribute
Please open issues if you have questions or issues. I'm trying to keep this
package as small as possible, so before adding any components, please open an
issue we can discuss.