diff --git a/package-lock.json b/package-lock.json
index 63bae9c..4319b36 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11,7 +11,7 @@
"@astrojs/mdx": "^4.3.0",
"@astrojs/svelte": "^7.1.0",
"@tailwindcss/vite": "^4.1.8",
- "astro": "^5.9.1",
+ "astro": "^5.10.0",
"caniuse-lite": "^1.0.30001698",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
@@ -38,9 +38,9 @@
}
},
"node_modules/@astrojs/compiler": {
- "version": "2.12.1",
- "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.12.1.tgz",
- "integrity": "sha512-WDSyVIiz7sNcJcCJxJFITu6XjfGhJ50Z0auyaWsrM+xb07IlhBLFtQuDkNy0caVHWNcKTM2LISAaHhgkRqGAVg==",
+ "version": "2.12.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.12.2.tgz",
+ "integrity": "sha512-w2zfvhjNCkNMmMMOn5b0J8+OmUaBL1o40ipMvqcG6NRpdC+lKxmTi48DT8Xw0SzJ3AfmeFLB45zXZXtmbsjcgw==",
"license": "MIT"
},
"node_modules/@astrojs/internal-helpers": {
@@ -1587,12 +1587,12 @@
}
},
"node_modules/astro": {
- "version": "5.9.1",
- "resolved": "https://registry.npmjs.org/astro/-/astro-5.9.1.tgz",
- "integrity": "sha512-wxoJcTbuDZNFSv6EaL0PAlrp0Wx6VnOAULCXvy0scsV70oWMeUkdxuBxfO54JxO5Qgyvwj9h99y6E0elqOpGtA==",
+ "version": "5.10.0",
+ "resolved": "https://registry.npmjs.org/astro/-/astro-5.10.0.tgz",
+ "integrity": "sha512-g/t54kVzQnFVijs+GbbbX/NBAFTl/3yNAEA/AQYq4FumLLVv7n4BIF+jKhcPGn9iFGyT1Cjvr7KB/qYyNvHEIg==",
"license": "MIT",
"dependencies": {
- "@astrojs/compiler": "^2.12.1",
+ "@astrojs/compiler": "^2.12.2",
"@astrojs/internal-helpers": "0.6.1",
"@astrojs/markdown-remark": "6.3.2",
"@astrojs/telemetry": "3.3.0",
diff --git a/package.json b/package.json
index 2f242ba..21b1a83 100644
--- a/package.json
+++ b/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.3.0",
"@astrojs/svelte": "^7.1.0",
"@tailwindcss/vite": "^4.1.8",
- "astro": "^5.9.1",
+ "astro": "^5.10.0",
"caniuse-lite": "^1.0.30001698",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
diff --git a/src/components/sections/BackToBlogs.astro b/src/components/blog/BackToBlogs.astro
similarity index 100%
rename from src/components/sections/BackToBlogs.astro
rename to src/components/blog/BackToBlogs.astro
diff --git a/src/components/sections/ContactComponent.svelte b/src/components/contact/ContactComponent.svelte
similarity index 91%
rename from src/components/sections/ContactComponent.svelte
rename to src/components/contact/ContactComponent.svelte
index 4286817..7313b3c 100644
--- a/src/components/sections/ContactComponent.svelte
+++ b/src/components/contact/ContactComponent.svelte
@@ -1,12 +1,12 @@
Get in Touch with me!
diff --git a/src/components/sections/ExperienceComponent.astro b/src/components/experience/ExperienceComponent.astro
similarity index 96%
rename from src/components/sections/ExperienceComponent.astro
rename to src/components/experience/ExperienceComponent.astro
index 611498a..46b4ba0 100644
--- a/src/components/sections/ExperienceComponent.astro
+++ b/src/components/experience/ExperienceComponent.astro
@@ -1,6 +1,6 @@
---
-import Card from "../elements/Card.astro";
-import Line from "../elements/NetworkLine.astro";
+import Card from "../global/Card.astro";
+import Line from "../global/NetworkLine.astro";
---
diff --git a/src/components/sections/MoreExperience.astro b/src/components/experience/MoreExperience.astro
similarity index 90%
rename from src/components/sections/MoreExperience.astro
rename to src/components/experience/MoreExperience.astro
index d1c1dc3..8340ef4 100644
--- a/src/components/sections/MoreExperience.astro
+++ b/src/components/experience/MoreExperience.astro
@@ -1,6 +1,6 @@
---
-import Card from "../elements/Card.astro";
-import Line from "../elements/NetworkLine.astro";
+import Card from "../global/Card.astro";
+import Line from "../global/NetworkLine.astro";
---
diff --git a/src/components/elements/Card.astro b/src/components/global/Card.astro
similarity index 100%
rename from src/components/elements/Card.astro
rename to src/components/global/Card.astro
diff --git a/src/components/sections/FooterComponent.astro b/src/components/global/FooterComponent.astro
similarity index 100%
rename from src/components/sections/FooterComponent.astro
rename to src/components/global/FooterComponent.astro
diff --git a/src/components/sections/NavBar.astro b/src/components/global/NavBar.astro
similarity index 100%
rename from src/components/sections/NavBar.astro
rename to src/components/global/NavBar.astro
diff --git a/src/components/elements/NetworkLine.astro b/src/components/global/NetworkLine.astro
similarity index 100%
rename from src/components/elements/NetworkLine.astro
rename to src/components/global/NetworkLine.astro
diff --git a/src/components/sections/IntroComponent.svelte b/src/components/home/IntroComponent.svelte
similarity index 99%
rename from src/components/sections/IntroComponent.svelte
rename to src/components/home/IntroComponent.svelte
index 7e77127..a5c846c 100644
--- a/src/components/sections/IntroComponent.svelte
+++ b/src/components/home/IntroComponent.svelte
@@ -1,6 +1,6 @@
diff --git a/src/pages/projects.astro b/src/pages/projects.astro
index 1e44d0d..0974b09 100644
--- a/src/pages/projects.astro
+++ b/src/pages/projects.astro
@@ -1,108 +1,108 @@
---
-import NavBar from "../components/sections/NavBar.astro";
+import NavBar from "../components/global/NavBar.astro";
import Layout from "../layouts/Layout.astro";
-import ProjectsComponent from "../components/sections/ProjectsComponent.astro";
-import MoreProjects from "../components/sections/MoreProjects.svelte";
-import Footer from "../components/sections/FooterComponent.astro";
+import ProjectsComponent from "../components/projects/ProjectsComponent.astro";
+import MoreProjects from "../components/projects/MoreProjects.svelte";
+import Footer from "../components/global/FooterComponent.astro";
---
-
-
-
Projects
-
-
-
-
-
+
+
+
Projects
+
+
+
+
+
diff --git a/src/pages/skills.astro b/src/pages/skills.astro
index 4996854..82cafcc 100644
--- a/src/pages/skills.astro
+++ b/src/pages/skills.astro
@@ -1,9 +1,9 @@
---
-import NavBar from "../components/sections/NavBar.astro";
+import NavBar from "../components/global/NavBar.astro";
import Layout from "../layouts/Layout.astro";
-import SkillsComponent from "../components/sections/SkillsComponent.astro";
-import MoreSkills from "../components/sections/MoreSkills.astro";
-import Footer from "../components/sections/FooterComponent.astro";
+import SkillsComponent from "../components/skills/SkillsComponent.astro";
+import MoreSkills from "../components/skills/MoreSkills.astro";
+import Footer from "../components/global/FooterComponent.astro";
---