Skip to content

Commit 1d380ea

Browse files
committed
feat: integrate tool node editor icon into blog post instructions
1 parent 7fca04e commit 1d380ea

File tree

3 files changed

+166
-9
lines changed

3 files changed

+166
-9
lines changed

frontend/public/sitemap.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@
88
>
99
<url>
1010
<loc>https://imadsaddik.com/</loc>
11-
<lastmod>2026-01-31T11:00:25.322Z</lastmod>
11+
<lastmod>2026-01-31T11:01:30.787Z</lastmod>
1212
<changefreq>daily</changefreq>
1313
<priority>1.0</priority>
1414
</url>
1515
<url>
1616
<loc>https://imadsaddik.com/about-me</loc>
17-
<lastmod>2026-01-31T11:00:25.322Z</lastmod>
17+
<lastmod>2026-01-31T11:01:30.787Z</lastmod>
1818
<changefreq>monthly</changefreq>
1919
<priority>0.8</priority>
2020
</url>
2121
<url>
2222
<loc>https://imadsaddik.com/hire-me</loc>
23-
<lastmod>2026-01-31T11:00:25.322Z</lastmod>
23+
<lastmod>2026-01-31T11:01:30.787Z</lastmod>
2424
<changefreq>monthly</changefreq>
2525
<priority>0.8</priority>
2626
</url>
2727
<url>
2828
<loc>https://imadsaddik.com/resume</loc>
29-
<lastmod>2026-01-31T11:00:25.322Z</lastmod>
29+
<lastmod>2026-01-31T11:01:30.787Z</lastmod>
3030
<changefreq>yearly</changefreq>
3131
<priority>0.5</priority>
3232
</url>
@@ -68,7 +68,7 @@
6868
</url>
6969
<url>
7070
<loc>https://imadsaddik.com/blogs/how-to-warp-and-angle-your-designs-in-inkscape</loc>
71-
<lastmod>2026-01-31T11:00:24.267Z</lastmod>
71+
<lastmod>2026-01-31T11:01:23.352Z</lastmod>
7272
<changefreq>monthly</changefreq>
7373
<priority>0.7</priority>
7474
</url>
Lines changed: 153 additions & 0 deletions
Loading

frontend/src/blogs/how-to-warp-and-angle-your-designs-in-inkscape/index.vue

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@
151151
panel, you will see options for <b>Top bend path</b>, <b>Right bend path</b>, etc.
152152
</p>
153153
<p>
154-
Click the small "Edit on-canvas" icon next to the <b>Top bend path</b> option. You will see a green line appear
155-
with two handles.
154+
Click the small "Edit on-canvas" <InlineIcon :icon="toolNodeEditorIcon" /> icon next to the
155+
<b>Top bend path</b> option. You will see a green line appear with two handles.
156156
</p>
157157

158158
<ImageWithCaption
@@ -176,8 +176,8 @@
176176

177177
<p>
178178
Repeat this process for the other sides: <b>Right bend path</b>, <b>Bottom bend path</b>, and
179-
<b>Left bend path</b>. Each time, click the "Edit on-canvas" icon and snap the handles to the corners of your
180-
guide shape.
179+
<b>Left bend path</b>. Each time, click the "Edit on-canvas" <InlineIcon :icon="toolNodeEditorIcon" /> icon and
180+
snap the handles to the corners of your guide shape.
181181
</p>
182182

183183
<ImageWithCaption
@@ -237,6 +237,7 @@ import drawCurvedShape from "./6_draw_shape_matching_curved_surface.svg";
237237
import editingTopBend from "./7_editing_top_bend_path.svg";
238238
import aligningTopBend from "./8_aligning_top_bend_handles.svg";
239239
import aligningAllBend from "./9_aligning_all_bend_handles.svg";
240+
import toolNodeEditorIcon from "@/assets/icons/tool_node_editor.svg";
240241
241242
// Constants
242243
import { ARTICLE_TYPES } from "@/constants";
@@ -246,6 +247,7 @@ import ArticleLayout from "@/components/ArticleLayout.vue";
246247
import ImageWithCaption from "@/components/ImageWithCaption.vue";
247248
import ImageEnlarger from "@/components/ImageEnlarger.vue";
248249
import InlineCode from "@/components/InlineCode.vue";
250+
import InlineIcon from "@/components/InlineIcon.vue";
249251
import AdmonitionBlock from "@/components/AdmonitionBlock.vue";
250252
import BulletPoint from "@/components/BulletPoint.vue";
251253
import YouTubePlayer from "@/components/YouTubePlayer.vue";
@@ -261,6 +263,7 @@ export default {
261263
ImageWithCaption,
262264
ImageEnlarger,
263265
InlineCode,
266+
InlineIcon,
264267
AdmonitionBlock,
265268
BulletPoint,
266269
YouTubePlayer,
@@ -301,6 +304,7 @@ export default {
301304
editingTopBend,
302305
aligningTopBend,
303306
aligningAllBend,
307+
toolNodeEditorIcon,
304308
305309
// Constants
306310
ARTICLE_TYPES,

0 commit comments

Comments
 (0)