Introduction
Overview
The Indian Startup Funding Tracker (bwm) is a high-performance data visualization platform designed to track, analyze, and understand the evolving Indian startup landscape. It provides entrepreneurs, investors, and analysts with a transparent view of funding rounds, sectoral trends, and investor activity.
The platform aggregates complex funding data into an accessible interface, allowing users to move from high-level ecosystem statistics to granular deal-level details in just a few clicks.
Key Features
- Real-time Ecosystem Stats: Instant visibility into total disclosed funding, deal counts, and the most active sectors.
- Advanced Deal Discovery: A robust "Explore" interface with multi-dimensional filtering by sector, stage, location, year, and funding range.
- Deep Analytics: Comprehensive visual dashboards powered by Recharts, featuring Year-over-Year (YoY) analysis, sector deep-dives, and investor velocity tracking.
- Currency Normalization: Automatic conversion of funding amounts into Indian denominations (Crores/Lakhs) using configurable exchange rates.
- Search Engine: Instant search across both company names and investor portfolios.
Navigating the Platform
The application is structured into three primary modules, accessible via the main navigation:
1. Home (Dashboard)
The landing page provides a "Pulse Check" of the ecosystem. It highlights the Hero Stats—total capital raised and the largest deals—and offers Quick Insights into trending sectors and the most active investors.
2. Explore
The Explore page is the primary tool for data mining. Users can search for specific companies or investors and apply granular filters.
- Undisclosed Deals: Toggle visibility for deals where the funding amount was not publicly shared.
- Range Filtering: Narrow down deals based on specific capital requirements (e.g., ₹10Cr to ₹100Cr).
3. Analytics
The Analytics section transforms raw data into strategic intelligence. It categorizes funding by:
- Timeline: Monthly and yearly funding trends.
- Geography: Top startup hubs (e.g., Bengaluru, Mumbai, Gurgaon).
- Segments: Distribution of capital across sectors like Fintech, SaaS, and HealthTech.
Design Philosophy: Neo-Brutalism
This project utilizes a Neo-Brutalist design system. Unlike traditional "soft" UI, this approach emphasizes:
- High Contrast: Bold black borders and vibrant green/yellow accents.
- Raw Geometry: Sharp edges and "heavy" shadows (
neo-shadow). - Typography: Large, bold headings using the Space Grotesk font for maximum readability.
Users and developers can interact with these UI elements via standard CSS utility classes:
<!-- Example of a Neo-Brutalist UI component -->
<div className="neo-border neo-hover p-6 bg-white">
<h3 className="font-bold text-lg">Fintech Solutions</h3>
<p className="text-green-700 font-bold">₹500Cr Raised</p>
</div>
Data Handling & Currency
To maintain consistency across diverse data sources, the platform uses a standardized formatting utility. Funding is automatically scaled based on the amount:
| Amount Range | Display Format | Example | | :--- | :--- | :--- | | < 1 Crore | Lakhs (L) | ₹75L | | 1 Crore - 999 Crores | Crores (Cr) | ₹120Cr | | > 1000 Crores | Billions (B) | ₹1.2B |
Note on Conversions: For deals reported in USD, the platform applies a conversion rate defined in the system configuration (e.g., 1 USD = ₹83.50). To update this rate or regenerate the data, administrators use the npm run generate-data command.