This commit is contained in:
2026-01-01 01:27:19 -05:00
commit 45b17f53b4
4 changed files with 75 additions and 0 deletions

51
.gitignore vendored Normal file
View File

@@ -0,0 +1,51 @@
dist*
.DS_Store
.idea
.vscode
node_modules
*.log
tmp
temp
coverage
.nyc_output
package-lock.json
yarn.lock
# Ignore dist
dist
# Ignore .cache
.cache
# Ignore .env
.env
# Ignore .env.local
.env.local
# Ignore .env.development.local
.env.development.local
# Ignore .env.test.local
.env.test.local
# Ignore .env.production.local
.env.production.local
# Ignore .npmrc
.npmrc
# Ignore .yarnrc
.yarnrc
# Ignore .yarnclean
.yarnclean
# Ignore .nvmrc
.nvmrc
# Ignore package-lock.json
package-lock.json
# Ignore yarn.lock
yarn.lock

19
README.md Normal file
View File

@@ -0,0 +1,19 @@
# Nebula
Nebula is an implementation of the WebAwesome UI Library in Golang Templ syntax.
## Installation
```bash
go get github.com/sonr-io/nebula
```
## Usage
```go
package main
import (
"fmt"
"github.com/prad/nebula"
)

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/sonr-io/nebula
go 1.25.5

2
nebula.go Normal file
View File

@@ -0,0 +1,2 @@
// Package nebula is an implementation of the WebAwesome UI Library in Golang Templ syntax.
package nebula