diff --git a/README.md b/README.md
index e243543..92b609e 100644
--- a/README.md
+++ b/README.md
@@ -25,9 +25,13 @@ Personal portfolio website featuring dual personas (Creative & IT), inspired by
- **Typography**: Syne (display) + IBM Plex Mono
- **Default theme**: Light
-### Print CV
-- Separate print-optimized A4 format
-- Concise professional journey
+### Print CV (Downloadable PDF)
+- Professional B&W print-friendly A4 format
+- Two-column layout: Sidebar (contact, skills, education) + Main content
+- Includes all 8 job experiences from Graphic Artist to AI Creative Lead
+- Strategic IT Projects section showcasing Full-Stack development skills
+- Awards & Recognition section
+- Clean, minimal design optimized for HR/recruiters
## Tech Stack
@@ -53,6 +57,7 @@ npm run build
## Print CV
Press the "Download CV" button or use `window.print()` to generate the PDF CV.
+Select "Save as PDF" in the print dialog.
## License
diff --git a/src/App.jsx b/src/App.jsx
index f995f31..ac4675c 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1384,7 +1384,7 @@ export default function Portfolio() {
)}
- {/* Permanently mount the print portfolio so the browser can natively invoke it */}
+ {/* Print-only portfolio - hidden on screen */}
diff --git a/src/PrintPortfolio.jsx b/src/PrintPortfolio.jsx
index c7fc059..66c4223 100644
--- a/src/PrintPortfolio.jsx
+++ b/src/PrintPortfolio.jsx
@@ -2,14 +2,14 @@ import React from 'react';
const PRINT_PERSONAL_INFO = {
name: "Khoa.vo",
- title: "CREATIVE MANAGER & AI INNOVATION LEAD",
+ title: "CREATIVE MANAGER & AI-POWERED DEVELOPER",
location: "Ho Chi Minh City, Vietnam",
phone: "0398300340",
email: "vonguyendangkhoa@gmail.com",
- linkedin: "linkedin.com/in/khoavo",
+ linkedin: "linkedin.com/in/khoavo93",
portfolio: "khoavo.myds.me",
- summaryHeadline: "Visionary Creative Leader merging Brand Strategy with Generative AI.",
- summaryBody: "With 9+ years of expertise at global firms like P&G and Phibious, I bridge the gap between artistic direction and high-performance automation. I specialize in designing scalable AI video production workflows and agentic systems that serve Fortune 500 brands while driving measurable growth and operational excellence.\n\nBeyond traditional creative direction, my recent evolution into an AI-Powered Developer enables me to architect custom web applications and full-stack deployment pipelines (React, Go, Docker). By unifying deep brand-building experience with hands-on coding and machine learning integration, I transform creative conceptualization into quantifiable, automated, and highly scalable digital realities."
+ summaryHeadline: "Creative Leader | AI Innovation | Full-Stack Developer",
+ summaryBody: "With 9+ years at P&G and Phibious, I bridge creative direction with AI automation—building scalable video production workflows for Fortune 500 brands.\n\nAs an AI-Powered Developer, I also build production apps: video streaming platforms (Go, Docker), AI image generators, and Android TV apps."
};
const PRINT_EDUCATION = [
@@ -42,7 +42,7 @@ const PRINT_EXPERIENCES = [
},
{
role: "eCOM Design Lead",
- company: "Procter & Gamble",
+ company: "Procter & Gamble (P&G)",
period: "Sep 2023 - Jun 2025",
highlights: [
"Directed visual strategies for P&G's Hair Care portfolio across SEA, impacting millions of consumers effectively.",
@@ -62,24 +62,81 @@ const PRINT_EXPERIENCES = [
},
{
role: "Production Creative Lead",
- company: "Inn Saigon",
+ company: "INN SaiGon",
period: "Dec 2019 - Nov 2020",
highlights: [
- "Directed a multi-disciplinary team of photographers and retouchers for high-profile hospitality clients.",
+ "Directed photography production for food, product, and event projects with 30+ client accounts across hospitality, F&B, and luxury retail sectors.",
"Managed production budgets and resource allocation for 30+ simultaneous client accounts.",
"Implemented quality control frameworks that reduced post-production errors by 40%."
]
+ },
+ {
+ role: "Regional Head of Design",
+ company: "ASIAMARINE",
+ period: "2018 - 2019",
+ highlights: [
+ "Led design team creating digital marketing assets, web graphics, and editorial content for Vietnam's premier luxury yacht brand.",
+ "Delegated projects to junior designers while maintaining quality control and brand consistency across all touchpoints.",
+ "Developed the visual identity system that defined ASIAMARINE's premium positioning in the regional marine lifestyle sector."
+ ]
+ },
+ {
+ role: "Senior Graphic Designer",
+ company: "EMG - Element Management Group",
+ period: "2017 - 2018",
+ highlights: [
+ "Created impactful designs for print and digital campaigns for global luxury and lifestyle brands.",
+ "Expert in photo sourcing, advanced image retouching, and brand identity development.",
+ "Developed production-ready artwork for offset and digital print, ensuring color accuracy across media."
+ ]
+ },
+ {
+ role: "Graphic Artist",
+ company: "Le Meridien Saigon",
+ period: "2016 - 2017",
+ highlights: [
+ "Created visual materials for hotel marketing campaigns and guest communications.",
+ "Designed menus, promotional materials, and digital signage for the hotel.",
+ "Collaborated with marketing team to maintain brand standards across all touchpoints."
+ ]
+ },
+ {
+ role: "Animation Designer",
+ company: "Adidas Sourcing",
+ period: "2015 - 2016",
+ highlights: [
+ "Designed animations for product showcases and marketing presentations.",
+ "Created motion graphics for internal and external communications.",
+ "Worked with design team to develop visual content for Adidas products."
+ ]
}
];
const PRINT_STRATEGIC_TECH = [
- { name: "KV-Tube", tech: "Go, Next.js, Docker", desc: "Enterprise-grade HLS video streaming platform with custom NAS deployment architecture." },
- { name: "APIx GenAI", tech: "TypeScript, LLM APIs", desc: "A custom AI image generation portal integrating multiple LLM and Diffusion providers." }
+ { name: "KV-Tube", tech: "Go, Next.js, Docker, HLS", desc: "Enterprise-grade HLS video streaming platform deployed on Synology NAS. Features: user management, watch history, playlists, PWA support." },
+ { name: "APIx GenAI", tech: "TypeScript, Multi-LLM APIs", desc: "AI image generation portal integrating Google Whisk, Meta AI, Grok. Multi-provider support with prompt library and history." },
+ { name: "KV-Netflix", tech: "Kotlin, Compose Multiplatform", desc: "Full-featured Netflix clone for Android TV + Web. Movie streaming with trailer preview, custom playlists, offline downloads." },
+ { name: "Spotify Clone", tech: "React, Rust (Axum), YouTube API", desc: "Music player with YouTube Music integration, real-time lyrics, custom playlists, PWA support." }
];
-// --- BRANDING COMPONENT (B&W Friendly) ---
-const PRINT_VNDKLogo = ({ size = 100, vnColor = "#000000", dkColor = "#333333" }) => (
-