Engineering Intelligence. Building Systems. Scaling Impact.
A production-grade, investor-ready digital headquarters serving as the operational center for Prithish Misra.
This is not a traditional portfolio. It is a completely dynamic Founder Operating System. Designed with absolute modularity, the core structure acts as a heavily optimized engine capable of scaling content via separate data layers without any future UI modifications.
The aesthetic philosophy is "AI Founder From The Future"—represented through a strictly deep-navy dark mode, complex glassmorphism, micro-interactions, hardware-accelerated animations, and a real-time neural background rendered in Three.js.
| Metric | Score | Goal |
|---|---|---|
| Performance | 98+ | Optimized asset delivery, Code splitting |
| Accessibility | 100 | Semantic HTML, ARIA rules, Focus states |
| Best Practices | 100 | Strict mode, Secure dependencies |
| SEO | 100 | Dynamic meta, JSON-LD, Sitemap |
/src
├── /assets # Static optimizations & raw images
├── /blog
│ └── /posts # Markdown ingestion pipeline (.md)
├── /components # Isolated UI components (Cursor, Nav, etc.)
├── /data # Single Source of Truth for all text content
│ ├── projects.js
│ ├── ventures.js
│ ├── skills.js
│ └── ...
├── /layouts # Routing wrappers & transitions
├── /pages # Route-level components
├── /sections # Specific page sectors (Hero, Contact)
├── App.jsx # Global router & presence node
├── index.css # Tailwind directives & global classes
└── main.jsx # DOM Entry Point
-
Clone the Hub
git clone https://github.com/prithishmisra23/Portfolio-.git cd Portfolio- -
Initialize Dependencies
npm install
-
Configure Environment Variables Create a
.envin the root:VITE_EMAILJS_SERVICE_ID=your_service_id VITE_EMAILJS_TEMPLATE_ID=your_template_id VITE_EMAILJS_PUBLIC_KEY=your_public_key
-
Boot Development Server
npm run dev
The architecture is explicitly configured for edge-deployment on Vercel.
- Connect GitHub repository to Vercel.
- Under "Framework Preset", verify Vite is selected.
- Map environment variables in the Vercel dashboard.
- Deploy.
Point A-records to 76.76.21.21 (Vercel Anycast IP) or set CNAME aliases to the provided .vercel.app proxy. Allow up to 24h for TLS/SSL resolution.
NEVER edit the UI files (.jsx) to update the portfolio content.
Navigate to /src/data/ or /src/blog/posts/ and update the relevant JSON/JS arrays or markdown models. The system will dynamically re-render the architecture on the next build.
This repository acts as a private operational core. PRs modifying core architecture or styling paradigms will be strictly reviewed.
Semantic commits:
feat(component): added neural netfix(data): updated metricchore(deps): updated vite plugin
MIT License. System logic open for viewing, fork structure subject to attribution.