Skip to content

salonyranjan/VertexFlow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

11 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🌌 VertexFlow - Interactive 3D Developer Portfolio

Live Status Framework 3D

Welcome to the source code for my personal developer portfolio, VertexFlow. This project is a highly interactive, 3D-powered web experience designed to showcase my journey as a Full-Stack and AI/ML Developer.

πŸ”— View Live Portfolio


✨ Features

  • Interactive 3D Elements: Immersive 3D models and environments built with Three.js and React Three Fiber.
  • Fluid Animations: Complex scroll-triggered animations and page transitions powered by GSAP and Framer Motion.
  • Smooth Scrolling: Silky smooth, physics-based scrolling utilizing Lenis.
  • Functional Contact Form: Direct-to-email contact form integrated seamlessly with EmailJS.
  • Responsive Design: Fully optimized for both desktop and mobile viewing experiences.
  • Modern Architecture: Built on Vite for lightning-fast Hot Module Replacement (HMR) and optimized production builds.

πŸ› οΈ Tech Stack

Frontend & Core

  • React 19 - UI Library
  • Vite - Build Tool & Development Server
  • Tailwind CSS v4 - Utility-first styling

3D & Animation

  • Three.js - WebGL 3D Engine
  • @react-three/fiber - React renderer for Three.js
  • @react-three/drei - Useful helpers for React Three Fiber
  • GSAP (GreenSock) - Professional-grade animation library
  • Framer Motion - Declarative animations for React
  • Lenis - Smooth scroll API

Utilities & Integrations

  • @emailjs/browser - Client-side email integration

πŸ›οΈ Project Architecture

VertexFlow is built on a modern, decoupled frontend architecture designed for high performance, smooth 3D rendering, and seamless continuous deployment.

graph TD
    %% User Interaction
    User((User / Browser)) -->|Visits Site| Vercel[Vercel Edge Network]
    Vercel -->|Serves Static Assets| App[React / Vite App]

    %% Frontend Core
    subgraph Frontend Client
        App --> 3D[3D Engine<br/>Three.js + React Three Fiber]
        App --> Motion[Animation Layer<br/>GSAP + Framer Motion]
        App --> Styling[UI Layer<br/>Tailwind CSS]
    end

    %% External Services
    App -->|Contact Form Payload| EmailJS[EmailJS API]
    EmailJS -->|Email Delivery| Inbox((Personal Inbox))

    %% CI/CD Pipeline
    Repo[GitHub Repository] -->|Push to Main| CI_CD[Vercel CI/CD Pipeline]
    CI_CD -->|Builds & Deploys| Vercel
Loading

πŸ—„οΈ Conceptual Data Model (ER Diagram)

Although VertexFlow is a serverless frontend application, the UI is driven by a strictly typed data model structure, and user interactions are handled via structured payloads to external APIs.

erDiagram
    VISITOR ||--o{ MESSAGE : "Submits via Contact Form"
    PORTFOLIO ||--|{ PROJECT : "Showcases"
    PORTFOLIO ||--|{ EXPERIENCE : "Highlights"
    PORTFOLIO ||--|{ SKILL : "Demonstrates"
    PORTFOLIO ||--|{ CERTIFICATION : "Validates"

    MESSAGE {
        string sender_name
        string sender_email
        string message_content
        string service_id "EmailJS Payload"
    }

    PROJECT {
        string name
        string tech_stack
        string description
        string github_link
        string live_link
        string image_path
    }

    EXPERIENCE {
        string role_title
        string company_logo
        string duration
        array responsibilities
    }

    SKILL {
        string category_title
        string description
        string icon_path
    }

    CERTIFICATION {
        string course_name
        string issuer
        string issue_date
        string credential_link
    }
Loading

πŸš€ Projects Showcased

This portfolio highlights my top engineering projects, including:

  • MediQuery.ai: RAG-based medical chatbot using LLMs, LangChain, and AWS.
  • SkillBridge AI: Full-stack AI career coach with automated resume parsing.
  • RoleRadar: Agentic job discovery platform using autonomous AI agents.
  • OpenShelf E2E: Machine learning recommendation engine utilizing collaborative filtering.
  • QuickCart: High-performance e-commerce architecture.
  • ZenithRag: Advanced Level-3 RAG system built for deep document retrieval.

πŸ’» Running Locally

Want to explore the code or run it on your own machine? Follow these steps:

1. Clone the repository

git clone [https://github.com/salonyranjan/VertexFlow.git](https://github.com/salonyranjan/VertexFlow.git)
cd VertexFlow

2. Install dependencies

npm install

3. Set up Environment Variables

To make the contact form work locally, create a .env file in the root directory and add your EmailJS credentials:

Code snippet
VITE_APP_EMAILJS_SERVICE_ID=your_service_id_here
VITE_APP_EMAILJS_TEMPLATE_ID=your_template_id_here
VITE_APP_EMAILJS_PUBLIC_KEY=your_public_key_here

4. Start the development server

npm run dev

The application will be available at http://localhost:5173.


🌐 Deployment

This project is configured for seamless deployment on Vercel.

Framework Preset: Vite

Build Command: npm run build

Output Directory: dist

Note: Ensure that Environment Variables are also configured in your Vercel Project Settings for the live contact form to function properly.

About

πŸš€ A high-performance, visually cinematic 3D portfolio experience built with React, Three.js, and GSAP. Featuring immersive WebGL environments, smooth scroll orchestration, and optimized 3D rendering.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors