├── .github ├── PULL_REQUEST_TEMPLATE.md ├── pull_request_template │ ├── bug_fix.md │ ├── default.md │ └── feature.md └── workflows │ ├── Auto Draft Release.yml │ └── Release.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── bun.lock ├── components.json ├── components ├── mode-toggle.tsx ├── theme-provider.tsx └── ui │ ├── button.tsx │ ├── dropdown-menu.tsx │ └── input.tsx ├── eslint.config.mjs ├── lib └── utils.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json └── tsconfig.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/pull_request_template/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.github/pull_request_template/bug_fix.md -------------------------------------------------------------------------------- /.github/pull_request_template/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.github/pull_request_template/default.md -------------------------------------------------------------------------------- /.github/pull_request_template/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.github/pull_request_template/feature.md -------------------------------------------------------------------------------- /.github/workflows/Auto Draft Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.github/workflows/Auto Draft Release.yml -------------------------------------------------------------------------------- /.github/workflows/Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.github/workflows/Release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/app/page.tsx -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/components.json -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/public/window.svg -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomandhoni-cs/tauri-nextjs-shadcn-boilerplate/HEAD/tsconfig.json --------------------------------------------------------------------------------