01 — Card Layouts

Project Cards Grid

Hover-activated overlay cards with action buttons. A staple of modern portfolio sites — clean grid with consistent card sizing.

Grid + Overlay — hover interaction GRID
React TypeScript

E-Commerce Dashboard

A full-featured admin panel with real-time analytics, inventory management, and order tracking.

UI Design Figma

Fitness App Redesign

Complete redesign of a fitness tracking app focusing on simplicity and motivation.

Swift iOS

Recipe Finder App

Native iOS app with ingredient-based search, meal planning, and nutrition tracking.

<div class="proj-grid">
  <div class="proj-card">
    <div class="proj-card-img">
      <i class="ph ph-browser"></i>
      <div class="proj-card-overlay">
        <a href="#"><i class="ph ph-eye"></i></a>
        <a href="#"><i class="ph ph-github-logo"></i></a>
      </div>
    </div>
    <div class="proj-card-body">
      <div class="proj-card-tags">
        <span class="proj-tag">React</span>
      </div>
      <h3>Project Title</h3>
      <p>Project description goes here.</p>
    </div>
  </div>
</div>
02 — Featured Project

Case Study Hero

A large, prominent layout for your best work. Pairs an image with detailed project metadata and a strong call-to-action.

Split Grid — image + content HERO
2024 3 months Team of 4

SaaS Analytics Platform

Led the complete redesign of a B2B analytics platform serving 10K+ users. Focused on data visualization, onboarding flow, and reducing time-to-insight by 60%.

Product Design Research Prototyping
<div class="case-hero">
  <div class="case-hero-img">
    <i class="ph ph-layout"></i>
  </div>
  <div class="case-hero-content">
    <div class="case-hero-meta">
      <span class="case-meta-item">
        <i class="ph ph-calendar-blank"></i> 2024
      </span>
    </div>
    <h2>Project Title</h2>
    <p>Project description...</p>
    <button class="case-btn">
      View Case Study <i class="ph ph-arrow-right"></i>
    </button>
  </div>
</div>
03 — Minimal Layout

Minimal List

Typography-driven project list. No images needed — let the project titles and descriptions do the talking. Great for developers and writers.

Numbered list — hover animation LIST
<div class="min-list">
  <a class="min-item" href="#">
    <span class="min-num">01</span>
    <div class="min-info">
      <h3>Project Title</h3>
      <p>Short description &bull; Tech stack</p>
    </div>
    <i class="ph ph-arrow-right min-arrow"></i>
  </a>
</div>
04 — Gallery Layout

Bento Grid

Asymmetric grid layout inspired by the popular "bento box" trend. Mix large and small project thumbnails for visual variety.

CSS Grid spans — asymmetric sizing BENTO

Web Platform

Full-stack SaaS application

Mobile App

Cross-platform

3D Visuals

WebGL experience

Data Dashboard

Real-time analytics interface

Brand Identity

Visual system

<div class="bento">
  <div class="bento-item">
    <div class="bento-bg">
      <i class="ph ph-desktop-tower"></i>
    </div>
    <div class="bento-info">
      <h3>Web Platform</h3>
      <p>Full-stack SaaS application</p>
    </div>
  </div>
  <!-- More items... -->
</div>
05 — Interactive

Filterable Gallery

Category-based project filter with toggle buttons. Uses simple JavaScript to show/hide cards based on the selected category.

Filter buttons + Grid — JS toggle FILTER
Web Development

Startup Landing Page

High-converting landing page with animated sections

Mobile App

Task Manager Pro

Productivity app with gesture-based navigation

Branding

Cafe Brand System

Complete visual identity for artisan coffee brand

Web Development

E-Commerce Store

Full-stack store with payment integration

Mobile App

Travel Companion

Location-based travel recommendations

Branding

Eco Startup Identity

Sustainable brand system with packaging design

<div class="filter-bar">
  <button class="filter-btn active" data-filter="all">
    <i class="ph ph-squares-four"></i> All
  </button>
  <button class="filter-btn" data-filter="web">
    <i class="ph ph-globe"></i> Web
  </button>
</div>

<div class="filter-grid">
  <div class="filter-card" data-cat="web">
    <div class="filter-card-img">
      <i class="ph ph-code"></i>
    </div>
    <div class="filter-card-body">
      <h3>Project Title</h3>
      <p>Description...</p>
    </div>
  </div>
</div>
06 — Detailed View

Split Showcase

Image and details side by side, alternating direction. Perfect for showcasing projects with metrics and outcomes.

Alternating grid — stats + link SPLIT

Analytics Dashboard

Designed and built a real-time analytics dashboard for a fintech startup, improving data accessibility for non-technical stakeholders.

+42%Engagement
3.2sLoad Time
98%Uptime
View Project

Social Media Platform

Full-stack social platform with real-time messaging, content feeds, and community features built for creative professionals.

15KUsers
4.8Rating
50msLatency
View Project

AI Writing Assistant

Chrome extension powered by machine learning that helps writers improve clarity, tone, and engagement across any text input.

25KInstalls
-60%Edit Time
92%Accuracy
View Project
<div class="split-showcase">
  <div class="split-item">
    <div class="split-img">
      <i class="ph ph-chart-bar"></i>
    </div>
    <div class="split-content">
      <h3>Project Title</h3>
      <p>Description...</p>
      <div class="split-stats">
        <div class="split-stat">
          <span class="split-stat-val">+42%</span>
          <span class="split-stat-label">Metric</span>
        </div>
      </div>
      <a class="split-link" href="#">
        View Project <i class="ph ph-arrow-right"></i>
      </a>
    </div>
  </div>
</div>
07 — Chronological

Timeline Portfolio

Show your work in chronological order with a vertical timeline. Great for freelancers and agencies to display project history.

Vertical timeline — gradient line TIMELINE
  2024

Healthcare Patient Portal

Designed an accessible patient portal for a healthcare network, enabling online appointment booking and secure messaging.

  2023

Real Estate Platform

Built a property listing platform with interactive map search, virtual tours, and mortgage calculator integration.

  2022

EdTech Learning Platform

Interactive learning platform with video courses, quizzes, and progress tracking for coding students.

  2021

Restaurant Ordering System

Online ordering and delivery platform for a restaurant chain with kitchen display and driver tracking.

<div class="timeline">
  <div class="tl-item">
    <div class="tl-dot"></div>
    <div class="tl-year">
      <i class="ph ph-calendar-blank"></i> 2024
    </div>
    <div class="tl-card">
      <h3>Project Title</h3>
      <p>Description...</p>
      <div class="tl-card-footer">
        <span class="tl-tech">React</span>
        <span class="tl-tech">Node.js</span>
      </div>
    </div>
  </div>
</div>
08 — Interactive Cards

Hover Reveal Cards

Full-bleed cards where project details slide up on hover. A dramatic, portfolio-focused interaction that keeps the layout clean until explored.

Transform + Opacity — slide-up reveal REVEAL
01 / Brand Design

Luxury Brand Refresh

Complete visual identity overhaul for a premium lifestyle brand including packaging and digital presence.

02 / Web App

Project Management Tool

Kanban-style project tracker with team collaboration, time tracking, and automated reporting.

03 / Mobile App

Wellness Tracker

Health and wellness app with habit tracking, mindfulness exercises, and personalized insights.

<div class="reveal-grid">
  <div class="reveal-card">
    <div class="reveal-label">01 / Category</div>
    <div class="reveal-bg">
      <i class="ph ph-diamond"></i>
    </div>
    <div class="reveal-content">
      <h3>Project Title</h3>
      <p>Description...</p>
      <div class="reveal-actions">
        <a href="#" class="reveal-btn reveal-btn-primary">
          <i class="ph ph-eye"></i> Preview
        </a>
        <a href="#" class="reveal-btn reveal-btn-ghost">
          <i class="ph ph-arrow-square-out"></i> Details
        </a>
      </div>
    </div>
  </div>
</div>