duocnv 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +22 -28
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -33,30 +33,24 @@ const links = {
|
|
|
33
33
|
|
|
34
34
|
const projectDetails = {
|
|
35
35
|
clik: {
|
|
36
|
-
title: "Clik - Screenshot Tool
|
|
36
|
+
title: "Clik - Screenshot Tool",
|
|
37
37
|
stats: [
|
|
38
|
-
"
|
|
39
|
-
"Counter markers for
|
|
40
|
-
"
|
|
41
|
-
"Keyboard-first, ~15MB",
|
|
38
|
+
"Annotate screenshots for AI prompts",
|
|
39
|
+
"Counter markers for referencing",
|
|
40
|
+
"Keyboard-first workflow",
|
|
42
41
|
],
|
|
43
42
|
tech: "Tauri + Rust + React",
|
|
44
43
|
url: "https://clik.aiocean.io",
|
|
45
44
|
},
|
|
46
45
|
justread: {
|
|
47
|
-
title: "Just Read -
|
|
48
|
-
stats: [
|
|
49
|
-
|
|
50
|
-
"EPUB/PDF support",
|
|
51
|
-
"AI-assisted comprehension",
|
|
52
|
-
"Vocabulary building",
|
|
53
|
-
],
|
|
54
|
-
tech: "TypeScript, AI/ML",
|
|
46
|
+
title: "Just Read - Reading Helper",
|
|
47
|
+
stats: ["Translation for English learners", "EPUB/PDF support", "Built for my own learning"],
|
|
48
|
+
tech: "TypeScript",
|
|
55
49
|
url: "https://aiocean.io",
|
|
56
50
|
},
|
|
57
51
|
obsidian: {
|
|
58
|
-
title: "Obsidian Open Gate
|
|
59
|
-
stats: ["
|
|
52
|
+
title: "Obsidian Open Gate",
|
|
53
|
+
stats: ["Embed webpages in Obsidian", "Simple plugin I made", "Open source"],
|
|
60
54
|
tech: "TypeScript, Obsidian API",
|
|
61
55
|
url: "https://github.com/nguyenvanduocit/obsidian-open-gate",
|
|
62
56
|
},
|
|
@@ -95,7 +89,7 @@ function Header() {
|
|
|
95
89
|
<Box flexDirection="column">
|
|
96
90
|
<Text> </Text>
|
|
97
91
|
<Text>{coolGradient(logoText)}</Text>
|
|
98
|
-
<Text dimColor>
|
|
92
|
+
<Text dimColor> Engineering Manager • Curious Mind</Text>
|
|
99
93
|
<Text> </Text>
|
|
100
94
|
<Text>
|
|
101
95
|
{" "}
|
|
@@ -130,18 +124,18 @@ function Header() {
|
|
|
130
124
|
<Text>
|
|
131
125
|
{" "}
|
|
132
126
|
<Text bold>Hi, I'm Được Nguyễn</Text>{" "}
|
|
133
|
-
<Text dimColor>-
|
|
127
|
+
<Text dimColor>- a curious developer from Vietnam</Text>
|
|
134
128
|
</Text>
|
|
135
129
|
<Text> </Text>
|
|
136
|
-
<Text dimColor> I
|
|
137
|
-
<Text dimColor> Currently
|
|
138
|
-
<Text dimColor>
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
130
|
+
<Text dimColor> I like building small tools that solve my own problems.</Text>
|
|
131
|
+
<Text dimColor> Currently tinkering with Clik (screenshot tool) and Just Read</Text>
|
|
132
|
+
<Text dimColor> (reading helper) in my spare time.</Text>
|
|
133
|
+
<Text> </Text>
|
|
134
|
+
<Text dimColor> Day job: Engineering Manager, helping teams ship good software.</Text>
|
|
135
|
+
<Text dimColor> Side quests: Open source, writing at 12bit.vn, and learning new things.</Text>
|
|
142
136
|
<Text> </Text>
|
|
143
|
-
<Text dimColor>
|
|
144
|
-
<Text dimColor>
|
|
137
|
+
<Text dimColor> Helped start Vue.js Vietnam community back in 2016.</Text>
|
|
138
|
+
<Text dimColor> Still believe in sharing knowledge and helping others grow.</Text>
|
|
145
139
|
<Text> </Text>
|
|
146
140
|
<Text>
|
|
147
141
|
{" "}
|
|
@@ -290,9 +284,9 @@ function MainMenu({ onSelect, onEasterEgg }) {
|
|
|
290
284
|
|
|
291
285
|
function ProjectsMenu({ onSelect, onBack }) {
|
|
292
286
|
const items = [
|
|
293
|
-
{ label: "Clik", value: "clik", hint: "Screenshot
|
|
294
|
-
{ label: "Just Read", value: "justread", hint: "
|
|
295
|
-
{ label: "Obsidian Open Gate", value: "obsidian", hint: "
|
|
287
|
+
{ label: "Clik", value: "clik", hint: "Screenshot annotations" },
|
|
288
|
+
{ label: "Just Read", value: "justread", hint: "Reading helper for learners" },
|
|
289
|
+
{ label: "Obsidian Open Gate", value: "obsidian", hint: "Embed webpages in Obsidian" },
|
|
296
290
|
];
|
|
297
291
|
|
|
298
292
|
useInput((_, key) => {
|