Go to file
alireza b2e9bcdf40 feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes
- Auth: phone-or-email login, OTP login/signup (Kavenegar SFsignin/SFsignup),
  register-verify + password-otp endpoints, OTP-login session fix
- Profile page redesign (menu right / data left, RTL) + SMS password reset
- At a Glance: Figma-matched cards (gold pill badge, gray cards, meta), category
  rename, computed counts, animated news ticker, summit banner, 5-line gated preview
- About page: remove board banner, selectable dept tabs, contact section
- Radar: fix duplicated MiniCard excerpt; gate -> our own auth (login/register)
- Footer trust badges + flag-image language toggle; site-wide Persian digits
2026-06-23 16:56:16 +03:30
.claude THU figma redesign 2026-06-11 11:00:17 +03:30
.rtk feat: radar category pages, post detail page, panel CMS wiring + webp uploads 2026-06-14 17:01:28 +03:30
panel feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
public feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
scraper THU figma redesign 2026-06-11 11:00:17 +03:30
scripts feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
src feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
.dockerignore Refactor authentication handling across PostDetail, ProfilePage, Radar, and RadarPost components 2026-06-18 08:47:00 +03:30
.gitattributes Fix gitattributes merge conflict marker 2026-06-02 15:38:41 +03:30
.gitignore feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
.liaraignore feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
CLAUDE.md feat: radar category pages, post detail page, panel CMS wiring + webp uploads 2026-06-14 17:01:28 +03:30
Dockerfile feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
README.md Add Docker deployment for Hugging Face Spaces 2026-05-26 16:04:01 +03:30
README_FA.md feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
SECURITY.md THU figma redesign 2026-06-11 11:00:17 +03:30
design-system.md Design system rebrand, image slider, contact form, new home sections 2026-05-31 17:02:46 +03:30
docker-compose.yml Add Docker deployment for Hugging Face Spaces 2026-05-26 16:04:01 +03:30
eslint.config.js Initial commit 2026-05-25 16:07:58 +03:30
fig-profile.png feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
hero-bg.original.mp4 feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
index.html feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
liara-deploy.md Refactor authentication handling across PostDetail, ProfilePage, Radar, and RadarPost components 2026-06-18 08:47:00 +03:30
liara.json Refactor authentication handling across PostDetail, ProfilePage, Radar, and RadarPost components 2026-06-18 08:47:00 +03:30
live_dashboard.html THU figma redesign 2026-06-11 11:00:17 +03:30
live_prices.js THU figma redesign 2026-06-11 11:00:17 +03:30
live_prices.json THU figma redesign 2026-06-11 11:00:17 +03:30
nginx.conf Add Docker deployment for Hugging Face Spaces 2026-05-26 16:04:01 +03:30
package-lock.json feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
package.json feat: phone+OTP auth, profile redesign, At-a-Glance Figma polish, radar/article fixes 2026-06-23 16:56:16 +03:30
rtk.exe feat: add RadarPost page with membership gate and related sidebar 2026-06-18 08:45:02 +03:30
tsconfig.app.json Initial commit 2026-05-25 16:07:58 +03:30
tsconfig.json Initial commit 2026-05-25 16:07:58 +03:30
tsconfig.node.json Initial commit 2026-05-25 16:07:58 +03:30
vite.config.ts feat: add RadarPost page with membership gate and related sidebar 2026-06-18 08:45:02 +03:30

README.md

title emoji colorFrom colorTo sdk app_port pinned
Andishkade Foolad 🏭 indigo gray docker 7860 false

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Run locally with Docker

# Build and start (foreground)
docker compose up --build

# Or detached
docker compose up -d --build

# Stop
docker compose down

The app will be available at http://localhost:7860.

Deploy to Hugging Face Spaces

  1. Create a new Space → SDK: DockerBlank.
  2. Push this repo (including Dockerfile, nginx.conf, and the README frontmatter above).
  3. Spaces reads app_port: 7860 from the frontmatter and routes traffic to the container automatically — no further config needed.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

"# thinktank" "# thinktank" git init git add git commit -m "first commit" git branch -M main git remote add origin https://github.com/alirezaameria2-dev/thinktank.git git push -u origin main "# thinktank" git init git add git commit -m "first commit" git branch -M main git remote add origin https://github.com/alirezaameria2-dev/thinktank.git git push -u origin main