Skip to content

Commit 0012fdb

Browse files
committed
Initial release
1 parent 76257a0 commit 0012fdb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+13041
-0
lines changed

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug in Once UI
4+
---
5+
6+
### Thank you for taking the time to fill out this bug report.
7+
8+
**Tell us what happened**
9+
10+
[A clear and concise description of the bug you've encountered.]
11+
12+
13+
**Affected components**
14+
15+
[Is the feature request related to an existing component?]
16+
17+
18+
**How do we reproduce it?**
19+
20+
[Please share a step-by-step description of how to reproduce the issue.]
21+
22+
23+
**Screenshots**
24+
25+
[If applicable, add screenshots to help explain your problem.]
26+
27+
28+
**System information and logs**
29+
30+
[Add any information that might be relevant.]
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Feature Request
3+
about: Submit a feature request for Once UI
4+
---
5+
6+
### Thank you for taking the time to submit a feature request. We appreciate your contribution.
7+
8+
**Describe the feature**
9+
10+
[Tell us about the problem you're trying to solve and the requested feature.]
11+
12+
13+
**Affected components**
14+
15+
[Is the feature request related to an existing component?]

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
![Once UI (Light)](public/images/cover-light.png#gh-light-mode-only)
2+
![Once UI (Dark)](public/images/cover-dark.png#gh-dark-mode-only)
3+
4+
Once UI is a lightweight, versatile design system intended to cover 80% of the needs of all applications. Start building your Next.js app in minutes with:
5+
* **A robust token and style system** that simplifies customization and ensures consistency.
6+
* **A copy-and-paste component library** that integrates seamlessly into your project.
7+
* **Interactive documentation** to apply your branding and set component properties.
8+
9+
## Documentation
10+
The documentation is available at [once-ui.com/docs](https://once-ui.com/docs/getStarted).
11+
12+
## Releases
13+
v0.1 - Initial release
14+
15+
## Authors
16+
Connect with us on X or LinkedIn.
17+
18+
Lorant Toth - [X](https://twitter.com/_lorant_), [LinkedIn](https://www.linkedin.com/in/tothlorant/)
19+
Zsofia Komaromi - [LinkedIn](https://www.linkedin.com/in/zsofiakomaromi/)
20+
21+
## Get involved
22+
- Join the [Once UI Discord server](https://discord.com/invite/5EyAQ4eNdS) to connect with designers, developers and share your projects.
23+
- Report a [bug](https://github.com/once-ui-system/nextjs-starter/issues/new?labels=bug&template=bug_report.md).
24+
- Submit a [feature request](https://github.com/once-ui-system/nextjs-starter/issues/new?labels=feature%20request&template=feature_request.md).
25+
26+
## License
27+
28+
Distributed under the MIT License. See `LICENSE.txt` for more information.
29+
30+
## Figma library
31+
32+
Once UI is also available for Figma.
33+
Design and prototype entire products from scratch in hours. Use the same tokens and components as the Next.js design system.
34+
35+
Grab a copy from the [Figma Community](https://figma.com/).

build.log

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
3+
> next build
4+
5+
▲ Next.js 14.2.3
6+
7+
Terminate batch job (Y/N)?
8+
^C

next.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
4+
};
5+
6+
export default nextConfig;

0 commit comments

Comments
 (0)