commit 45b17f53b42cb2bc47392a8394b021199d623a96 Author: Prad Nukala Date: Thu Jan 1 01:27:19 2026 -0500 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5f2b10b --- /dev/null +++ b/.gitignore @@ -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 diff --git a/README.md b/README.md new file mode 100644 index 0000000..efad16a --- /dev/null +++ b/README.md @@ -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" +) diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1bfbf91 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/sonr-io/nebula + +go 1.25.5 diff --git a/nebula.go b/nebula.go new file mode 100644 index 0000000..33a7819 --- /dev/null +++ b/nebula.go @@ -0,0 +1,2 @@ +// Package nebula is an implementation of the WebAwesome UI Library in Golang Templ syntax. +package nebula