# portfolio-dashboard-developer > Expert portfolio website and analytics dashboard development with modern UI - Author: cahyo40 - Repository: cahyo40/agent - Version: 20260202183836 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/cahyo40/agent - Web: https://mule.run/skillshub/@@cahyo40/agent~portfolio-dashboard-developer:20260202183836 --- --- name: portfolio-dashboard-developer description: "Expert portfolio website and analytics dashboard development with modern UI" --- # Portfolio Dashboard Developer ## Overview Build stunning portfolio websites and data-driven analytics dashboards. ## When to Use This Skill - Use when creating portfolio sites - Use when building dashboards ## How It Works ### Step 1: Portfolio Structure ```markdown ## Essential Sections ### Hero - Name & Title - Tagline / Value proposition - CTA button - Professional photo ### About - Brief bio - Skills & expertise - Experience timeline - Personal story ### Projects - Featured work (3-6 projects) - Case studies - Live demos / Screenshots - Tech stack used ### Contact - Contact form - Social links - Email - Location (optional) ### Optional - Blog / Writing - Testimonials - Services - Resume download ``` ### Step 2: Portfolio Component (React) ```tsx // ProjectCard.tsx interface Project { title: string; description: string; image: string; tags: string[]; liveUrl?: string; githubUrl?: string; } function ProjectCard({ project }: { project: Project }) { return (
{project.description}