gitextract_rue6gkmx/ ├── .cross_compile.sh ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── docker.yaml │ └── release.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bot/ │ └── bot.go ├── compose.yaml ├── config.example.yaml ├── frontend/ │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── src/ │ │ ├── app/ │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components/ │ │ │ ├── ui/ │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── toast.tsx │ │ │ │ └── toaster.tsx │ │ │ └── upload-zone.tsx │ │ ├── hooks/ │ │ │ └── use-toast.ts │ │ └── lib/ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── go.mod ├── go.sum ├── main.go ├── public/ │ ├── 404/ │ │ └── index.html │ ├── 404.html │ ├── _next/ │ │ └── static/ │ │ ├── chunks/ │ │ │ ├── 455-a269af0bea64e1d5.js │ │ │ ├── 4bd1b696-8a3c458bdab8bf04.js │ │ │ ├── 684-9ff42712bb05fa22.js │ │ │ ├── 869-9c07f9cccedfb126.js │ │ │ ├── app/ │ │ │ │ ├── _not-found/ │ │ │ │ │ └── page-c4ccdce3b6a32a2a.js │ │ │ │ ├── layout-f4f75e10eba9ecd4.js │ │ │ │ └── page-ef23a9b1d76fb793.js │ │ │ ├── framework-f593a28cde54158e.js │ │ │ ├── main-6a454ceb54d37826.js │ │ │ ├── main-app-3701f8484f32bf65.js │ │ │ ├── pages/ │ │ │ │ ├── _app-da15c11dea942c36.js │ │ │ │ └── _error-cc3f077a18ea1793.js │ │ │ ├── polyfills-42372ed130431b0a.js │ │ │ └── webpack-f029a09104d09cbc.js │ │ ├── css/ │ │ │ └── afe69862c9b626f3.css │ │ └── j6hdw6hDLpPcTkUaTeY7T/ │ │ ├── _buildManifest.js │ │ └── _ssgManifest.js │ ├── index.html │ └── index.txt └── static/ └── index.html