<<<<<<< HEAD
IGNITE is a bridge between students and entrepreneurs — a space where ambition meets experience, and ideas turn into real opportunities.
IGNITE 2026 is an innovation-driven event that connects students with entrepreneurs, startup founders, and industry professionals.
The goal is simple:
Create meaningful interactions that inspire, guide, and launch the next generation of builders.
IGNITE is not just a hackathon or a conference — it is a meeting point between learning and real-world execution.
- Connect students with real entrepreneurs
- Expose participants to startup culture and challenges
- Encourage innovation and practical thinking
- Help students turn ideas into viable projects
Unlike traditional events, IGNITE focuses on:
- 💬 Direct interaction with entrepreneurs
- 🧠 Real insights from people building actual startups
- 🚀 Opportunities for mentorship, internships, or collaboration
- 🔗 Networking that goes beyond the event
IGNITE is structured to maximize interaction and impact:
Entrepreneurs share their journeys, failures, and lessons learned.
Students connect directly with founders and professionals.
Participants work on ideas, often guided by mentors.
Entrepreneurs provide feedback and direction on projects.
Teams present ideas to a panel of judges and entrepreneurs.
- 🎓 Students (all fields, especially tech & business)
- 💡 Aspiring entrepreneurs
- 👨💻 Developers & designers
- 📈 Anyone interested in startups and innovation
- Real-world insights from entrepreneurs
- Strong professional network
- Experience working on impactful ideas
- Exposure to startup thinking and execution
- Potential opportunities (mentorship, internships, partnerships)
IGNITE aims to build a strong ecosystem where:
- Students are not just learners, but creators
- Entrepreneurs actively support and guide new talent
- Ideas are transformed into real startups
"Connect. Learn. Build. Ignite."
- Edition: IGNITE 2026
- Location: To be announced
- Date: Coming soon
For partnerships, participation, or inquiries:
- Email: [your-email@example.com]
- Social Media: [links]
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Oxc
- @vitejs/plugin-react-swc uses SWC
The React Compiler is enabled on this template. See this documentation for more information.
Note: This will impact Vite dev & build performances.
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...
},
},
])2865915 (update)