Skip to content

codinggita/propSight

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

75 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Beyond Listings. Into Insights.
A forensic real estate intelligence platform that exposes misleading commute claims and missing neighbourhood data β€” built for the Indian homebuyer.


Figma Design Frontend Backend Postman Demo Video


🚨 The Problem

India's real estate market β€” operates with a dangerous lack of transparency. Homebuyers making multi-crore decisions face two compounding problems:

Problem 1 β€” Misleading Commute Times [Pain Score: 85.5/100]

"Real estate marketing claims like '5 minutes from metro' are wildly inaccurate because they measure straight-line distances on maps rather than actual peak-hour walking time accounting for traffic signals, crowded sidewalks, and infrastructure obstacles."

  • Developers advertise straight-line map distances, not actual travel time
  • Peak-hour reality is 3–4x longer than advertised
  • No standardised commute disclosure requirement in India
  • Buyers discover the truth only after possession

Problem 2 β€” No Standardised Neighbourhood Data [Pain Score: 94.5/100]

"Home buyers making multi-crore investment decisions lack comprehensive, data-driven information about neighbourhood characteristics like school quality, crime statistics, air quality indices, water availability, power outage frequency, and future infrastructure plans."

  • No single source for locality intelligence in India
  • Government data is siloed across multiple portals
  • Buyers rely on broker-provided information (conflict of interest)
  • NRIs have zero ability to remotely assess property context

πŸ’‘ The Solution

PropSight 360 is a forensic real estate intelligence platform that aggregates, cross-verifies, and presents property data in a transparent, data-driven interface β€” empowering buyers to make decisions with complete neighbourhood and commute intelligence.

When a user opens PropSight 360, they should feel:
"I have POWER. I cannot be fooled.
 I know more than the brokers. I am protected."

✨ Key Features

πŸš— Forensic Commute Audit

  • Listed commute vs real peak-hour commute with 3.6x bias detection
  • Multi-modal breakdown: Drive, Metro, Bike, Auto/Cab
  • Bottleneck identification with street-level imagery
  • Hourly traffic heatmap showing best commute windows
  • Monsoon waterlogging risk and safety index for route

πŸ—ΊοΈ Neighbourhood Intelligence

  • 847 localities with live data across Ahmedabad
  • 8-dimensional quality scoring: School Quality, AQI, Water Supply, Power Stability, Crime Rate, Future Infrastructure, Vastu & Orientation, Flood Risk
  • Resident sentiment analysis with verified quotes
  • Interactive heatmaps: Price zones, Risk zones, Infrastructure pipelines, School catchment
  • Compare any two localities side-by-side

πŸ“„ Verified Audit Report

  • Shareable PDF report for both intelligence layers
  • Designed for sharing with family, CA, or legal advisor

πŸ“± Product Screens

🏠 Landing Page

Landing Page

"Don't buy a home until you've seen the real data." β€” The public-facing page that introduces PropSight 360's forensic intelligence capabilities.


πŸ” Authentication Flow

Sign In Sign Up Forgot Password
Sign In Sign Up Forgot Password
Split-panel login with Google SSO and email login Profile-type selection (Homebuyer / Tenant / Investor) with password strength indicator Secure reset link delivery within 2 minutes

πŸ“Š Dashboard β€” Intelligence Hub

Dashboard

Unified entry point showing the Neighbourhood Report and Avg. Commute Bias (3.4Γ—) cards, letting users jump straight into intelligence or commute auditing.


πŸ—ΊοΈ Neighbourhood Quality

Neighbourhood Quality

8-metric locality scorecard (School Quality, AQI, Water Supply, Power Stability, Crime Rate, Future Infra, Vastu & Orient, Flood Risk) with resident sentiment analysis and interactive map layers.


πŸš— Forensic Commute Audit

Commute Lies Detection

Side-by-side Listed vs Reality commute comparison with real-time route mapping, bottleneck detection, best commute time windows, safety index, and monsoon impact scoring.


πŸ› οΈ Tech Stack

Frontend

React.js + Vite            β€” Core framework & dev tooling
Tailwind CSS               β€” Utility-first styling
React Router               β€” Client-side routing
Google Material Symbols    β€” Iconography
Google Fonts (Sora,
  Manrope, Space Grotesk)  β€” Typography

Backend

Node.js + Express          β€” API server
MongoDB Atlas              β€” User & property database
JWT + HTTP-Only Cookies    β€” Secure session management
Google OAuth 2.0           β€” Social authentication
bcryptjs                   β€” Password hashing

Data Sources

TomTom API                 β€” Real-time commute data
AQICN API                  β€” Air Quality Index
OpenWeather API            β€” Environmental data

Infrastructure

Vite Dev Server            β€” Local development
Netlify                    β€” Production deployment

πŸ“ Folder Structure

PropSight_360/
β”‚
β”œβ”€β”€ πŸ“‚ Backend/
β”‚   β”œβ”€β”€ πŸ“‚ config/
β”‚   β”œβ”€β”€ πŸ“‚ controllers/
β”‚   β”œβ”€β”€ πŸ“‚ middleware/
β”‚   β”œβ”€β”€ πŸ“‚ models/
β”‚   β”œβ”€β”€ πŸ“‚ routes/
β”‚   β”œβ”€β”€ πŸ“‚ services/
β”‚   β”œβ”€β”€ πŸ“‚ utils/
β”‚   β”œβ”€β”€ .env.example
β”‚   β”œβ”€β”€ .gitignore
β”‚   β”œβ”€β”€ package.json
β”‚   └── server.js
β”‚
└── πŸ“‚ Frontend/
    β”œβ”€β”€ πŸ“‚ public/
    β”‚   └── πŸ“‚ screenshots/
    β”œβ”€β”€ πŸ“‚ src/
    β”‚   β”œβ”€β”€ πŸ“‚ api/
    β”‚   β”œβ”€β”€ πŸ“‚ assets/
    β”‚   β”œβ”€β”€ πŸ“‚ components/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ AuditReport/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ Auth/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ Commute/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ Dashboard/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ Landing/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ Neighborhood/
    β”‚   β”‚   β”œβ”€β”€ πŸ“‚ Onboarding/
    β”‚   β”‚   └── πŸ“‚ common/
    β”‚   β”œβ”€β”€ πŸ“‚ features/
    β”‚   β”œβ”€β”€ πŸ“‚ hooks/
    β”‚   β”œβ”€β”€ πŸ“‚ pages/
    β”‚   β”œβ”€β”€ πŸ“‚ store/
    β”‚   β”œβ”€β”€ πŸ“‚ utils/
    β”‚   β”œβ”€β”€ App.jsx
    β”‚   β”œβ”€β”€ index.css
    β”‚   └── main.jsx
    β”‚
    β”œβ”€β”€ .env.production
    β”œβ”€β”€ .gitignore
    β”œβ”€β”€ eslint.config.js
    β”œβ”€β”€ index.html
    β”œβ”€β”€ package.json
    β”œβ”€β”€ README.md
    └── vite.config.js

PropSight 360 β€” Built with ❀️ for India's homebuyers

"The best investment you can make is in the truth about your investment."

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors