website
git clone https://git.pyrossh.dev/website
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
16761c2
— pyrossh
2026-07-04T14:56:06+05:30
refactor: migrate CV page icons to unplugin-icons
- src/pages/cv/index.astro +2 -2
src/pages/cv/index.astro
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import Layout from "@/layouts/BaseLayout.astro";
|
|
3
3
|
import resumePdf from "@/assets/pdfs/resume.pdf";
|
|
4
4
|
import ResumeSvg from "@/assets/pdfs/resume.svg";
|
|
5
|
-
import
|
|
5
|
+
import MdiExternalLink from "~icons/mdi/external-link";
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
<Layout title="Curriculum Vitae" description="Peter John CV">
|
|
@@ -10,7 +10,7 @@ import { Icon } from "astro-icon/components";
|
|
|
10
10
|
<h1>
|
|
11
11
|
Curriculum Vitae
|
|
12
12
|
<a href={resumePdf} target="_blank" rel="noopener noreferrer">
|
|
13
|
-
<
|
|
13
|
+
<MdiExternalLink width="18" height="18" />
|
|
14
14
|
</a>
|
|
15
15
|
</h1>
|
|
16
16
|
<div class="pdf">
|