|
| 1 | +export default { |
| 2 | + // Navigation |
| 3 | + nav: { |
| 4 | + blog: 'Blog', |
| 5 | + projects: 'Projects', |
| 6 | + contact: 'Contact', |
| 7 | + }, |
| 8 | + |
| 9 | + // Homepage |
| 10 | + home: { |
| 11 | + welcome: '👋 Welcome to my portfolio', |
| 12 | + greeting: "Hi, I'm", |
| 13 | + name: 'Hieu Nguyen', |
| 14 | + role: 'AI Engineer', |
| 15 | + tagline: 'Building production-ready AI systems with NLP, RAG, and LLMs. Passionate about bringing AI into real-world applications.', |
| 16 | + cta: { |
| 17 | + viewWork: 'View My Work', |
| 18 | + getInTouch: 'Get in Touch', |
| 19 | + }, |
| 20 | + status: 'Available for hire', |
| 21 | + stats: { |
| 22 | + followers: 'Followers', |
| 23 | + repositories: 'Repositories', |
| 24 | + yearsExp: 'Years Exp', |
| 25 | + }, |
| 26 | + about: { |
| 27 | + title: 'About Me', |
| 28 | + subtitle: 'AI Engineer with Master\'s degree from JAIST, specializing in production ML systems', |
| 29 | + greeting: 'Hello there!', |
| 30 | + bio1: 'I\'m Hieu Nguyen, an AI Engineer from Vietnam 🇻🇳 with a passion for transforming research into production-ready systems.', |
| 31 | + bio2: 'My expertise lies in Natural Language Processing, RAG systems, and Large Language Models. I specialize in building scalable AI solutions that solve real-world problems.', |
| 32 | + bio3: 'I hold a {degree} from {school} in Japan, where I deepened my knowledge in information retrieval and machine learning.', |
| 33 | + bio4: 'When I\'m not coding, you\'ll find me exploring self-hosted solutions, contributing to open source, or writing about AI/ML on my blog.', |
| 34 | + }, |
| 35 | + education: { |
| 36 | + title: 'Education', |
| 37 | + }, |
| 38 | + techStack: { |
| 39 | + title: 'Tech Stack & Skills', |
| 40 | + }, |
| 41 | + featuredProjects: { |
| 42 | + title: '🚀 Featured Projects', |
| 43 | + subtitle: 'Check out some of my recent work and contributions', |
| 44 | + viewAll: 'View All Projects', |
| 45 | + }, |
| 46 | + latestArticles: { |
| 47 | + title: '✍️ Latest Articles', |
| 48 | + subtitle: 'Thoughts on AI, ML, and software engineering', |
| 49 | + viewAll: 'View All Articles', |
| 50 | + }, |
| 51 | + cta2: { |
| 52 | + title: 'Let\'s Build Something Amazing Together', |
| 53 | + subtitle: 'Looking for an AI engineer to bring your ideas to life? I\'m available for consulting, collaboration, and full-time opportunities.', |
| 54 | + getInTouch: '📧 Get in Touch', |
| 55 | + viewWork: '🚀 View My Work', |
| 56 | + }, |
| 57 | + }, |
| 58 | + |
| 59 | + // Projects Page |
| 60 | + projects: { |
| 61 | + title: 'Projects', |
| 62 | + subtitle: 'Personal and open source projects I\'ve built', |
| 63 | + filter: { |
| 64 | + all: 'All', |
| 65 | + product: 'Product', |
| 66 | + research: 'Research', |
| 67 | + tutorial: 'Tutorial', |
| 68 | + tool: 'Tool', |
| 69 | + fun: 'Fun', |
| 70 | + }, |
| 71 | + links: { |
| 72 | + website: 'Website', |
| 73 | + github: 'GitHub', |
| 74 | + blog: 'Read', |
| 75 | + }, |
| 76 | + }, |
| 77 | + |
| 78 | + // Contact Page |
| 79 | + contact: { |
| 80 | + title: '💬 Let\'s Connect', |
| 81 | + subtitle: 'Always happy to discuss AI, production ML, RAG systems, or self-hosted solutions', |
| 82 | + getInTouch: 'Get in Touch', |
| 83 | + quickInfo: { |
| 84 | + title: 'Quick Info', |
| 85 | + location: 'Location', |
| 86 | + locationValue: 'Hanoi, Vietnam 🇻🇳', |
| 87 | + role: 'Role', |
| 88 | + roleValue: 'AI Engineer', |
| 89 | + education: 'Education', |
| 90 | + educationValue: 'Master\'s in Information Science (JAIST)', |
| 91 | + }, |
| 92 | + interests: { |
| 93 | + title: 'Interests', |
| 94 | + aiml: 'AI/ML', |
| 95 | + nlp: 'NLP', |
| 96 | + rag: 'RAG', |
| 97 | + llms: 'LLMs', |
| 98 | + python: 'Python', |
| 99 | + ir: 'IR', |
| 100 | + teaching: 'Teaching', |
| 101 | + selfHosting: 'Self-hosting', |
| 102 | + }, |
| 103 | + availability: { |
| 104 | + title: '📬 Response Time', |
| 105 | + text: 'I typically respond to emails and LinkedIn messages within 24-48 hours. For quick questions, Twitter/X DMs work best!', |
| 106 | + }, |
| 107 | + cta: { |
| 108 | + title: 'Open to Collaboration', |
| 109 | + subtitle: 'Interested in collaborating on AI/ML projects, writing guest posts, or speaking opportunities?', |
| 110 | + button: '📧 Send me an email', |
| 111 | + }, |
| 112 | + }, |
| 113 | + |
| 114 | + // Blog Page |
| 115 | + blog: { |
| 116 | + title: 'Blog', |
| 117 | + subtitle: 'Articles about AI, ML, and software engineering', |
| 118 | + filter: { |
| 119 | + all: 'All', |
| 120 | + aiml: 'AI/ML', |
| 121 | + python: 'Python', |
| 122 | + tutorial: 'Tutorial', |
| 123 | + data: 'Data', |
| 124 | + }, |
| 125 | + readMore: 'Read More', |
| 126 | + minRead: 'min read', |
| 127 | + }, |
| 128 | + |
| 129 | + // Footer |
| 130 | + footer: { |
| 131 | + builtWith: 'Built with', |
| 132 | + and: 'and', |
| 133 | + sourceCode: 'Source Code', |
| 134 | + rights: 'All rights reserved.', |
| 135 | + }, |
| 136 | + |
| 137 | + // Common |
| 138 | + common: { |
| 139 | + readMore: 'Read More', |
| 140 | + viewAll: 'View All', |
| 141 | + loading: 'Loading...', |
| 142 | + }, |
| 143 | +} as const; |
0 commit comments