├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── api └── index.go ├── frontend ├── .gitignore ├── README.md ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components.json ├── components │ ├── theme-provider.tsx │ ├── theme-toggle.tsx │ └── ui │ │ ├── button.tsx │ │ └── dropdown-menu.tsx ├── eslint.config.mjs ├── lib │ ├── api.ts │ └── utils.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public │ ├── fiber.svg │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── tailwind.config.ts └── tsconfig.json ├── go.mod ├── go.sum └── vercel.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/README.md -------------------------------------------------------------------------------- /api/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/api/index.go -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/app/favicon.ico -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/components/theme-provider.tsx -------------------------------------------------------------------------------- /frontend/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/components/theme-toggle.tsx -------------------------------------------------------------------------------- /frontend/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /frontend/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/eslint.config.mjs -------------------------------------------------------------------------------- /frontend/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/lib/api.ts -------------------------------------------------------------------------------- /frontend/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/lib/utils.ts -------------------------------------------------------------------------------- /frontend/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/next.config.ts -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/postcss.config.mjs -------------------------------------------------------------------------------- /frontend/public/fiber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/public/fiber.svg -------------------------------------------------------------------------------- /frontend/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/public/file.svg -------------------------------------------------------------------------------- /frontend/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/public/globe.svg -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/public/window.svg -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/go.sum -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inagib21/nextjs-fiber-template/HEAD/vercel.json --------------------------------------------------------------------------------