-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
184 lines (173 loc) · 6.15 KB
/
constants.ts
File metadata and controls
184 lines (173 loc) · 6.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
import type { BlogCategory, BlogPost, JourneyEntry, Project, Skill, Theme, ThemeName } from "./types";
import suiSimulatorImage from "./src/assets/sui-simulator.png";
import dongNaiTravelImage from "./src/assets/dong-nai-travel.png";
import thamGiaDongNaiTravel from "./src/assets/dntu-journey/dongnaitravel-nhangiai.jpg"
import nhangiaiDongNaiTravel from "./src/assets/dntu-journey/nhan-giai.jpg"
import giayKhenDongNaiTravel from "./src/assets/dntu-journey/giay-khen-dntv.png"
import totNghiep from "./src/assets/tot-nghiep.jpg"
import { rustWasmContent } from "./contents/rustWasmContent";
export const PROJECTS_DATA: Project[] = [
{
id: 1,
title: "Sui-simulator",
description: "An open-source project for sui developers",
tech: ["VScode Extension", "Sui Blockchain", "React", "TypeScript"],
imageUrl: suiSimulatorImage,
liveUrl:
"https://marketplace.visualstudio.com/items?itemName=weminal-labs.sui-simulator-vscode",
repoUrl: "https://github.com/Weminal-labs/sui-simulator-vscode",
},
{
id: 2,
title: "DongNai Travel",
description:
"Application about introducing tourist places or hanging out in Dong Nai Province (Viet Nam)",
tech: [
"Typescript",
"MongoDB",
"Expo",
"React-Native",
"Express",
"GoogleAPI",
"Cloudinary",
"GPT",
],
imageUrl: dongNaiTravelImage,
liveUrl: "https://www.youtube.com/watch?v=6lMZkIQiZ68",
repoUrl: "https://github.com/Code4life-Labs/dongnai-travel",
},
];
export const SKILLS_DATA: Skill[] = [
// Frontend
{ name: "React.js", level: 4, category: "Frontend" },
{ name: "TypeScript", level: 3, category: "Frontend" },
{ name: "Next.js", level: 2, category: "Frontend" },
{ name: "TailwindCSS", level: 3, category: "Frontend" },
{ name: "progress...", level: 3, category: "Frontend" },
// Backend
{ name: "Node.js", level: 4, category: "Backend" },
{ name: "Python", level: 2, category: "Backend" },
{ name: "Rust", level: 2, category: "Backend" },
{ name: "MongoDB", level: 4, category: "Backend" },
{ name: "progress...", level: 3, category: "Backend" },
// DevOps
{ name: "Docker", level: 2, category: "DevOps" },
{ name: "AWS", level: 2, category: "DevOps" },
{ name: "progress...", level: 3, category: "DevOps" },
// Tools
{ name: "Git", level: 5, category: "Tools" },
{ name: "Figma", level: 4, category: "Tools" },
{ name: "NeoVim", level: 3, category: "Tools" },
{ name: "progress...", level: 3, category: "Tools" },
// Web3
{ name: "Sui Move", level: 3, category: "Web3" },
{ name: "progress...", level: 3, category: "Web3" },
];
export const JOURNEY_DATA: JourneyEntry[] = [
{
id: 1,
role: "Student",
company: "Dong Nai Technology University",
period: "9/2020 - 6/2025",
details: [
"Studied at Dong Nai Technology University, specializing in Software Engineering.",
"Graduated with a Software Engineer degree."
],
gallery: [
{ imageUrl: totNghiep, description: "Graduated from Dong Nai Technology University" },
{ imageUrl: thamGiaDongNaiTravel, description: "Participate in Dong Nai Digital Transformation Competition 2023" },
{ imageUrl: nhangiaiDongNaiTravel, description: "Won 3rd Prize in Dong Nai Digital Transformation Competition 2023" },
{ imageUrl: giayKhenDongNaiTravel, description: "Certificate of Merit for Dong Nai Digital Transformation Competition 2023" }
]
},
{
id: 2,
role: "Software Engineer",
company: "VBI Academy",
period: "6/2024 - 6/2025",
details: [
"Developed a web application gaming platform integrating with Unity Engine and blockchain technology Avail, OpenCampus, Sui blockchain, etc. using React and TypeScript.",
"Implemented a RESTful API for game data using Node.js and Express and MongoDB.",
"Integrated with a database for storing and retrieving game data."
],
gallery: []
},
{
id: 3,
role: "Đang Thực Hiện Nghĩa Vụ Quân Sự!!!",
company: "Quân Đội Nhân Dân Việt Nam",
period: "6/2025 - present",
details: [],
gallery: []
},
];
export const THEMES: Record<ThemeName, Theme> = {
'holo-cyan': {
name: 'holo-cyan',
colors: { primary: '#00ffff', secondary: '#ff00ff' },
},
'synth-magenta': {
name: 'synth-magenta',
colors: { primary: '#ff00ff', secondary: '#00ffff' },
},
'plasma-green': {
name: 'plasma-green',
colors: { primary: '#00ff00', secondary: '#ffff00' },
},
'solar-flare': {
name: 'solar-flare',
colors: { primary: '#ff8c00', secondary: '#ff4500' },
},
'neon-purple': {
name: 'neon-purple',
colors: { primary: '#9333ea', secondary: '#ec4899' },
},
'ocean-blue': {
name: 'ocean-blue',
colors: { primary: '#06b6d4', secondary: '#3b82f6' },
},
'matrix-green': {
name: 'matrix-green',
colors: { primary: '#10b981', secondary: '#22d3ee' },
},
'cosmic-pink': {
name: 'cosmic-pink',
colors: { primary: '#f472b6', secondary: '#a855f7' },
},
'electric-yellow': {
name: 'electric-yellow',
colors: { primary: '#eab308', secondary: '#f59e0b' },
},
'arctic-ice': {
name: 'arctic-ice',
colors: { primary: '#67e8f9', secondary: '#a5f3fc' },
},
'volcanic-red': {
name: 'volcanic-red',
colors: { primary: '#ef4444', secondary: '#f97316' },
},
'aurora-violet': {
name: 'aurora-violet',
colors: { primary: '#8b5cf6', secondary: '#d946ef' },
},
'midnight-blue': {
name: 'midnight-blue',
colors: { primary: '#6366f1', secondary: '#3b82f6' },
},
'sunset-orange': {
name: 'sunset-orange',
colors: { primary: '#f97316', secondary: '#fb923c' },
},
};
export const BLOG_CATEGORIES: BlogCategory[] = ['AI', 'Frontend', 'Backend', 'Rust', 'Database', 'General', 'Blockchain'];
export const BLOG_POSTS_DATA: BlogPost[] = [
{
id: 1,
slug: 'getting-started-with-rust-for-webassembly',
title: 'Getting Started with Rust for WebAssembly',
excerpt: 'Explore how to build high-performance web applications by compiling Rust to WebAssembly. A step-by-step guide for modern web developers.',
category: 'Rust',
date: '2025-11-02',
content: rustWasmContent,
}
];