aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-06-11 20:20:43 +0300
committerValentin Popov <valentin@popov.link>2025-06-11 20:20:43 +0300
commit423344fca500ab017c3cb7cb4b53f763400f5186 (patch)
treeb2e1f7df9dd767ca89fd3b1e30c30dadc0a56bfa /src/components
parent78a9c2abc56d47637eaa46eb1ce99b682d7bde0d (diff)
downloadpopov.link-423344fca500ab017c3cb7cb4b53f763400f5186.tar.xz
popov.link-423344fca500ab017c3cb7cb4b53f763400f5186.zip
chore: remove unused environment variables and update layout components
- Deleted the .env and src/env.d.ts files as they are no longer needed. - Updated BaseLayout to require title and description props directly, ensuring better clarity in component usage. - Adjusted various pages to pass explicit title and description values, enhancing SEO and user experience. - Increased print width in .prettierrc.mjs for improved code formatting.
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Sections/SocialLinks.astro33
-rw-r--r--src/components/Sections/Welcome.astro4
2 files changed, 5 insertions, 32 deletions
diff --git a/src/components/Sections/SocialLinks.astro b/src/components/Sections/SocialLinks.astro
index dbad5ef..ff04834 100644
--- a/src/components/Sections/SocialLinks.astro
+++ b/src/components/Sections/SocialLinks.astro
@@ -19,16 +19,7 @@
<section>
<div>
<a href="https://github.com/valentineus" title="GitHub" target="_blank">
- <svg
- width="24"
- height="24"
- viewBox="0 0 24 24"
- fill="none"
- stroke="currentColor"
- stroke-width="2"
- stroke-linecap="round"
- stroke-linejoin="round"
- >
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
>
@@ -36,31 +27,13 @@
</svg>
</a>
<a href="mailto:valentin@popov.link" title="E-Mail" target="_blank">
- <svg
- width="24"
- height="24"
- viewBox="0 0 24 24"
- fill="none"
- stroke="currentColor"
- stroke-width="2"
- stroke-linecap="round"
- stroke-linejoin="round"
- >
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</a>
<a href="/feed.xml" title="RSS" target="_blank">
- <svg
- width="24"
- height="24"
- viewBox="0 0 24 24"
- fill="none"
- stroke="currentColor"
- stroke-width="2"
- stroke-linecap="round"
- stroke-linejoin="round"
- >
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 11a9 9 0 0 1 9 9"></path>
<path d="M4 4a16 16 0 0 1 16 16"></path>
<circle cx="5" cy="19" r="1"></circle>
diff --git a/src/components/Sections/Welcome.astro b/src/components/Sections/Welcome.astro
index 15ae0a3..acbeeac 100644
--- a/src/components/Sections/Welcome.astro
+++ b/src/components/Sections/Welcome.astro
@@ -2,8 +2,8 @@
<div>
<h1>Hi, I'm Valentin Popov 👋</h1>
<p>
- I'm a professional software developer currently working as a project manager and team lead. On my personal
- website, I share thoughts on tech, leadership, and digital life.
+ I'm a professional software developer currently working as a project manager and team lead. On my personal website, I share thoughts on tech, leadership, and digital
+ life.
</p>
<p>Welcome, and feel free to explore!</p>
</div>