├── .gitignore ├── LICENSE ├── README.md ├── bun.lock ├── components.json ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── favicon.png └── og.png ├── src ├── app │ ├── error.tsx │ ├── layout.tsx │ ├── not-found.tsx │ └── shell │ │ └── page.tsx ├── components │ ├── boilerplate.tsx │ ├── providers │ │ └── index.tsx │ ├── theme │ │ ├── provider.tsx │ │ └── toggler.tsx │ └── ui │ │ ├── button.tsx │ │ └── card.tsx ├── config │ └── site.config.ts ├── frontend │ └── app.tsx ├── lib │ └── utils.ts ├── styles │ └── globals.css └── types │ └── index.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/components.json -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/public/og.png -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/shell/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/app/shell/page.tsx -------------------------------------------------------------------------------- /src/components/boilerplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/components/boilerplate.tsx -------------------------------------------------------------------------------- /src/components/providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/components/providers/index.tsx -------------------------------------------------------------------------------- /src/components/theme/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/components/theme/provider.tsx -------------------------------------------------------------------------------- /src/components/theme/toggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/components/theme/toggler.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/config/site.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/config/site.config.ts -------------------------------------------------------------------------------- /src/frontend/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/frontend/app.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrodip/nexfaster/HEAD/tsconfig.json --------------------------------------------------------------------------------