Frontend web application built with React + TypeScript + Vite.
Live Site: https://loot.fossptu.dev/
Logic Hack is a modern web application designed for coding challenges and competitive programming events. It provides a fast, responsive, and scalable frontend architecture using Vite for lightning‑fast builds and React for a modular UI system.
- ⚛️ React
- 🟦 TypeScript
- ⚡ Vite
- 🎨 CSS / Tailwind (if used)
- 🧹 ESLint
Clone the repository:
git clone https://github.com/YOUR-USERNAME/logic-hack.git
cd logic-hackInstall dependencies:
npm installStart the development server:
npm run devThe app will run on:
http://localhost:5173
Create an optimized production build:
npm run buildPreview the production build locally:
npm run previewsrc/
├── assets/
├── components/
├── pages/
├── hooks/
├── utils/
├── App.tsx
└── main.tsx
For production-grade applications, enable type-aware linting:
export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
tseslint.configs.recommendedTypeChecked,
tseslint.configs.strictTypeChecked,
tseslint.configs.stylisticTypeChecked,
],
languageOptions: {
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
},
])This project can be deployed easily on:
- Vercel
- Netlify
- Render
- Any static hosting provider
MIT License
Built with ❤️ for competitive programming and logic-based challenges.
If you want, I can also create:
- 🔥 A professional GitHub-optimized README with badges
- 📸 Screenshot section
- 🧩 Contributing guidelines
- 🐛 Issue & PR templates
- 🚀 CI/CD setup instructions