Skip to content

Commit 9a069db

Browse files
committed
feat: update lastUsed dates for tech stacks in AppTechStack component and add new tech entries for AWS, Google Cloud, Digital Ocean, and Coolify
1 parent eacc02d commit 9a069db

1 file changed

Lines changed: 38 additions & 18 deletions

File tree

components/AppTechStack.vue

Lines changed: 38 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ const techStacks = ref([
7070
{
7171
iconSrc: "i-logos-javascript",
7272
iconTitle: "javascript",
73-
lastUsed: dayjs().to(dayjs()),
73+
lastUsed: dayjs().to(dayjs("2026-01-24")),
7474
},
7575
{
7676
iconSrc: "i-logos-vue",
7777
iconTitle: "vue.js",
78-
lastUsed: dayjs().to(dayjs()),
78+
lastUsed: dayjs().to(dayjs("2026-01-24")),
7979
},
8080
{
8181
iconSrc: "i-logos-nuxt-icon",
8282
iconTitle: "nuxt.js",
83-
lastUsed: dayjs().to(dayjs()),
83+
lastUsed: dayjs().to(dayjs("2026-01-24")),
8484
},
8585
{
8686
iconSrc: "i-logos-nestjs",
@@ -95,12 +95,12 @@ const techStacks = ref([
9595
{
9696
iconSrc: "i-logos-typescript-icon",
9797
iconTitle: "typescript",
98-
lastUsed: dayjs().to(dayjs()),
98+
lastUsed: dayjs().to(dayjs("2026-01-24")),
9999
},
100100
{
101101
iconSrc: "i-logos-docker-icon",
102102
iconTitle: "docker",
103-
lastUsed: dayjs().to(dayjs()),
103+
lastUsed: dayjs().to(dayjs("2026-01-24")),
104104
},
105105
{
106106
iconSrc: "i-logos-sass",
@@ -110,7 +110,7 @@ const techStacks = ref([
110110
{
111111
iconSrc: "i-logos-tailwindcss-icon",
112112
iconTitle: "tailwind",
113-
lastUsed: dayjs().to(dayjs()),
113+
lastUsed: dayjs().to(dayjs("2026-01-24")),
114114
},
115115
{
116116
iconSrc: "i-logos-django-icon",
@@ -120,57 +120,77 @@ const techStacks = ref([
120120
{
121121
iconSrc: "i-logos-figma",
122122
iconTitle: "figma",
123-
lastUsed: dayjs().to(dayjs()),
123+
lastUsed: dayjs().to(dayjs("2026-01-24")),
124124
},
125125
{
126126
iconSrc: "i-logos-jira",
127127
iconTitle: "jira",
128-
lastUsed: dayjs().to(dayjs()),
128+
lastUsed: dayjs().to(dayjs("2025-11-01")),
129129
},
130130
{
131131
iconSrc: "i-logos-atlassian",
132132
iconTitle: "atlassian",
133-
lastUsed: dayjs().to(dayjs()),
133+
lastUsed: dayjs().to(dayjs("2025-11-01")),
134134
},
135135
{
136136
iconSrc: "i-logos-postman-icon",
137-
iconTitle: "postman",
138-
lastUsed: dayjs().to(dayjs()),
137+
iconTitle: "postman",
138+
lastUsed: dayjs().to(dayjs("2025-11-01")),
139139
},
140140
{
141141
iconSrc: "i-logos-redis",
142142
iconTitle: "redis",
143-
lastUsed: dayjs().to(dayjs()),
143+
lastUsed: dayjs().to(dayjs("2025-11-01")),
144144
},
145145
{
146146
iconSrc: "i-logos-git-icon",
147147
iconTitle: "git",
148-
lastUsed: dayjs().to(dayjs()),
148+
lastUsed: dayjs().to(dayjs("2026-01-24")),
149149
},
150150
{
151151
iconSrc: "i-logos-google-analytics",
152152
iconTitle: "google analytics",
153-
lastUsed: dayjs().to(dayjs()),
153+
lastUsed: dayjs().to(dayjs("2026-01-24")),
154154
},
155155
{
156156
iconSrc: "i-vscode-icons:file-type-vite",
157157
iconTitle: "vite",
158-
lastUsed: dayjs().to(dayjs()),
158+
lastUsed: dayjs().to(dayjs("2026-01-24")),
159159
},
160160
{
161161
iconSrc: "i-logos-flutter",
162162
iconTitle: "flutter",
163-
lastUsed: dayjs().to(dayjs()),
163+
lastUsed: dayjs().to(dayjs("2025-12-31")),
164164
},
165165
{
166166
iconSrc: "i-logos-cloudflare-icon",
167167
iconTitle: "cloudflare",
168-
lastUsed: dayjs().to(dayjs()),
168+
lastUsed: dayjs().to(dayjs("2026-01-24")),
169+
},
170+
{
171+
iconSrc: "i-logos-aws",
172+
iconTitle: "aws",
173+
lastUsed: dayjs().to(dayjs("2026-01-24")),
174+
},
175+
{
176+
iconSrc: "i-logos-google-cloud",
177+
iconTitle: "google cloud",
178+
lastUsed: dayjs().to(dayjs("2025-12-01")),
179+
},
180+
{
181+
iconSrc: "i-logos-digitalocean",
182+
iconTitle: "digital ocean",
183+
lastUsed: dayjs().to(dayjs("2026-01-24")),
184+
},
185+
{
186+
iconSrc: "i-logos-coolify",
187+
iconTitle: "coolify",
188+
lastUsed: dayjs().to(dayjs("2026-01-24")),
169189
},
170190
{
171191
iconSrc: "i-logos-nextjs-icon",
172192
iconTitle: "next.js",
173-
lastUsed: dayjs().to(dayjs()),
193+
lastUsed: dayjs().to(dayjs("2026-01-24")),
174194
},
175195
{
176196
iconSrc: "i-vscode-icons:file-type-elixir",

0 commit comments

Comments
 (0)